/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FEC404;
    --secondary-color: #2C3E50;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F5F5F5;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    --success-color: #27AE60;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

#languageSelect {
    padding: 8px 16px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

#languageSelect:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFD54F 100%);
    padding: 60px 0 40px;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.logo-icon {
    font-size: 48px;
}

.header h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tagline {
    font-size: 18px;
    color: var(--white);
    opacity: 0.95;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    background: var(--white);
}

.hero h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    color: var(--text-light);
}

/* Quick Links */
.quick-links {
    padding: 40px 0;
    background: var(--bg-light);
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.link-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.link-card .icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.link-card h3 {
    font-size: 20px;
    color: var(--secondary-color);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--white);
}

.features h2 {
    text-align: center;
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.faq-question {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '▼';
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-question {
    color: var(--primary-color);
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.7;
}

/* Troubleshooting Section */
.troubleshooting {
    padding: 80px 0;
    background: var(--white);
}

.troubleshooting h2 {
    text-align: center;
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.trouble-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.trouble-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.trouble-card h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.trouble-card ul {
    list-style: none;
}

.trouble-card li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.trouble-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 56px;
    display: block;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.response-time {
    font-size: 14px;
    color: var(--success-color);
    font-weight: 500;
}

/* Privacy Section */
.privacy-section {
    padding: 80px 0;
    background: var(--white);
}

.privacy-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.privacy-card h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.privacy-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.btn-link {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 36px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .features h2,
    .faq h2,
    .troubleshooting h2,
    .contact h2,
    .privacy-section h2 {
        font-size: 28px;
    }

    .link-grid,
    .feature-grid,
    .trouble-grid {
        grid-template-columns: 1fr;
    }

    .language-selector {
        top: 10px;
        right: 10px;
    }
}

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
}

[dir="rtl"] .trouble-card {
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

[dir="rtl"] .trouble-card li {
    padding-left: 0;
    padding-right: 25px;
}

[dir="rtl"] .trouble-card li::before {
    left: auto;
    right: 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Print Styles */
@media print {
    .language-selector,
    .footer {
        display: none;
    }
}

