/* Root variables */
:root {
    --gold-400: #d8aa56;
    --gold-500: #c69846;
    --gold-600: #b88a3b;
    --gold-700: #a37b33;
}

/* Base styles */
body {
    background: #f8f8f8;
    position: relative;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    color: #333;
    margin: 0;
}

/* Background pattern */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: radial-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 0);
    background-size: 20px 20px;
    background-position: -10px -10px;
    z-index: -1;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.terms-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.app-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}

.app-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.last-updated {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Content Section */
.terms-content {
    padding: 60px 0;
}

.content-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.terms-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold-500);
    border-radius: 2px;
}

[dir="rtl"] .terms-section h2::after {
    left: auto;
    right: 0;
}

.terms-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.terms-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #555;
}

[dir="rtl"] .terms-section ul li {
    padding-left: 0;
    padding-right: 25px;
}

.terms-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-500);
}

[dir="rtl"] .terms-section ul li::before {
    left: auto;
    right: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-hero {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .content-card {
        padding: 30px;
        margin: 0 15px;
    }

    .terms-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .content-card {
        padding: 20px;
    }

    .terms-section h2 {
        font-size: 1.2rem;
    }
}

/* Add these styles to match the privacy policy styling */
.terms-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.terms-point {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.terms-point:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.terms-point p {
    margin: 0;
    line-height: 1.8;
}

[dir="rtl"] .terms-point {
    text-align: right;
}

@media (max-width: 768px) {
    .terms-point {
        padding: 15px;
    }
}

/* Add this at the top of the file */
@font-face {
    font-family: 'K24Kurdish';
    src: url('../fonts/K24KurdishBold-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Update the terms-point styles for Kurdish */
.terms-point p {
    margin: 0;
    line-height: 1.8;
}

/* Add specific styling for Kurdish text */
[lang="ku"] .terms-point p {
    font-family: 'K24Kurdish', 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 2;
}

[lang="ku"] .terms-section h2 {
    font-family: 'K24Kurdish', 'Poppins', sans-serif;
    font-size: 1.8rem;
}

[lang="ku"] .hero-title {
    font-family: 'K24Kurdish', 'Poppins', sans-serif;
    font-size: 2.8rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

[lang="ku"] .last-updated {
    font-family: 'K24Kurdish', 'Poppins', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
}

[lang="ku"] .hero-description {
    font-family: 'K24Kurdish', 'Poppins', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Responsive adjustments for Kurdish text */
@media (max-width: 768px) {
    [lang="ku"] .hero-title {
        font-size: 2.4rem;
    }

    [lang="ku"] .hero-description {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    [lang="ku"] .terms-section h2 {
        font-size: 1.6rem;
    }

    [lang="ku"] .terms-point p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    [lang="ku"] .hero-title {
        font-size: 2rem;
    }

    [lang="ku"] .hero-description {
        font-size: 1rem;
    }

    [lang="ku"] .last-updated {
        font-size: 0.9rem;
    }

    [lang="ku"] .terms-section h2 {
        font-size: 1.4rem;
    }
} 