* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

:root {
    --primary-color: #c29d60;      /* Androsax gold (buttons, links) */
    --primary-muted: #6b7a8f;    /* muted navy-gray (pretitle, icons) */
    --heading-color: #1a2744;    /* midnight navy headings */
    --secondary-color: #c29d60;  /* gold accent */
    --text-color: #333;
    --bg-color: #ffffff;
    --light-bg: #f6f7f9;
    --border-color: #e6e9ef;
    --hover-color: #a8874a;
    --accent-yellow: #d4b06e;
    --dark-blue: #1a2744;
    --gradient-hero: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

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

/* Header Banner */
.header-banner {
    background: var(--dark-blue);
    color: white;
    text-align: center;
    padding: 12px 0;
    font-weight: 600;
    font-size: 14px;
}

.banner-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.banner-icon {
    flex-shrink: 0;
}

/* Top Bar */
.top-bar {
    background-color: var(--light-bg);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #666;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar-icon {
    flex-shrink: 0;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    padding: 80px 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    object-fit: contain;
}

/* CTA Buttons */
.cta-button {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    transition: box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    box-shadow: 0 6px 18px rgba(74, 111, 163, 0.18);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.cta-button i {
    font-size: 18px;
}

.cta-button:hover {
    background: var(--hover-color);
    box-shadow: 0 8px 22px rgba(74, 111, 163, 0.22);
}

.cta-button.secondary {
    margin-top: 30px;
}

/* Section Styles */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--heading-color);
    line-height: 1.3;
}

.section-text {
    font-size: 18px;
    text-align: center;
    color: #666;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background: var(--gradient-hero);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: white;
    padding: 50px 20px 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    min-height: 72px;
}

.footer-logo-img {
    height: 72px;
    width: auto;
    max-width: 200px;
    display: block !important;
    object-fit: contain;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent;
    filter: none;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: inherit;
}

.footer-link:visited {
    color: white;
}

.footer-link:hover {
    color: #a8c0e0;
}

.footer-copyright {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: left;
}

.footer-copyright p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
}

.footer-copyright p:last-child {
    margin-bottom: 0;
}

.disclaimer {
    font-size: 12px !important;
    color: #888 !important;
    max-width: 800px;
    margin: 15px 0 0 !important;
    text-align: left;
    line-height: 1.6;
}

/* Modal Popup */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    margin: 20px;
    padding: 40px;
    border-radius: 15px;
    max-width: 920px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.close:hover {
    color: var(--primary-color);
}

#popupContent {
    margin-top: 20px;
}

#popupContent h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

#popupContent p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

#popupContent ul {
    margin-left: 20px;
    margin-top: 15px;
    color: #666;
    line-height: 1.8;
}

#popupContent li {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-text {
        font-size: 16px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
    }

    .modal-content {
        padding: 30px 20px;
        margin: 10px;
    }

    .hero {
        padding: 50px 20px;
    }

    .hero-content {
        gap: 30px;
    }

    .faq {
        padding: 50px 20px;
    }
}

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

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
}
