/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}
.logo-img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}
a {
    text-decoration: none;
    color: inherit;
}
.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav a {
    margin-left: 30px;
    color: #333;
    font-weight: 500;
}

.desktop-nav .purchase-btn {
    background-color: #d4b24a;
    color: white !important;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.desktop-nav .purchase-btn:hover {
    background-color: #c19f3a;
}
/* Utility classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.gold-text {
    color: #d4b24a;
}

.gold-link {
    color: #d4b24a;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gold-link:hover {
    color: #c19f3a;
    text-decoration: underline;
}

/* Header styles */
.header-fixed {
    padding: 15px 0;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #f0f0f0;
}

.header-fixed.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: #d4b24a;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin-left: 30px;
    color: #333;
    font-weight: 500;
}

.nav-links a.active {
    color: #d4b24a;
}

.purchase-btn {
    background-color: #d4b24a;
    color: white !important;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.purchase-btn:hover {
    background-color: #c19f3a;
}

/* FAQ Header Styles */
.faq-content {
    padding: 120px 0 60px;
    min-height: 500px;
    background-color: #fff;
}

.faq-header {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 30px;
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #d4b24a;
}

.faq-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #d4b24a;
}

.faq-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-arrow.active {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    background-color: #f9f9f9;
    border-radius: 0 0 8px 8px;
}

.faq-answer.active {
    max-height: 300px;
    padding: 20px;
    margin-bottom: 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
}
/* Mobile toggle button */
.mobile-toggle {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.mobile-toggle span:nth-child(1) {
    top: 0px;
}

.mobile-toggle span:nth-child(2) {
    top: 9px;
}

.mobile-toggle span:nth-child(3) {
    top: 18px;
}

.mobile-toggle.active span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
    background: #d4b24a;
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-toggle.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
    background: #d4b24a;
}
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: all 0.3s ease;
    display: none;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 50px 20px;
}

.mobile-nav a {
    margin: 15px 0;
    font-size: 22px;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #d4b24a;
    transition: width 0.3s ease;
}

.mobile-nav a:hover {
    color: #d4b24a;
}

.mobile-nav a:hover:after {
    width: 100%;
}

.mobile-nav .purchase-btn {
    background-color: #d4b24a;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(212, 178, 74, 0.3);
}

.mobile-nav .purchase-btn:hover {
    background-color: #c19f3a;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(212, 178, 74, 0.4);
}

.mobile-nav .purchase-btn:after {
    display: none;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}
.faq-more {
    text-align: center;
    margin: 40px 0;
    color: #666;
    font-size: 16px;
}

/* Contact Section */
.contact-section {
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    margin: 60px 0 40px;
}

.contact-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-content > p {
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-option {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 300px;
}

/* When there's only one contact option, this centers it nicely */
.contact-options:has(.contact-option:only-child) {
    justify-content: center;
}

.contact-option:only-child {
    width: 350px; /* Slightly wider for better appearance when alone */
}

.contact-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-option i {
    font-size: 36px;
    color: #d4b24a;
    margin-bottom: 15px;
}

.contact-option h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-option p {
    color: #666;
    margin-bottom: 20px;
}

.btn-contact {
    display: inline-block;
    background-color: #d4b24a;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #c19f3a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 178, 74, 0.3);
}

/* Footer */
footer {
    padding: 60px 0 30px;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.simple-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.footer-text {
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
    overflow: hidden;
}

.social-icon:hover {
    background-color: #d4b24a;
    color: white;
    transform: translateY(-5px);
}

.social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .contact-options {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .contact-option {
        width: 100%;
        max-width: 320px;
    }
    
    .contact-option:only-child {
        width: 100%;
        max-width: 320px;
    }
    
    .faq-title {
        font-size: 36px;
    }
    
    .contact-section {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .nav-links a:not(.purchase-btn) {
        display: none;
    }
        .desktop-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    .faq-container {
        padding: 0 15px;
    }
    
    .faq-question {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .faq-title {
        font-size: 30px;
    }
    
    .faq-header {
        padding: 30px 0;
    }
    
    .contact-section {
        padding: 30px 20px;
    }
    
    .faq-content {
        padding: 100px 0 40px;
    }
}