.page-body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #faf9f6;
    color: #333333;
    line-height: 1.6;
}

.nav-link,
.logo-link,
.mobile-nav-link,
.footer-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.nav-link:hover,
.mobile-nav-link:hover,
.footer-link:hover {
    color: #c9a063;
}

.logo-link {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a1a;
    text-transform: uppercase;
}

.nav-list,
.mobile-nav-list,
.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.btn-primary {
    display: inline-block;
    background-color: #c9a063;
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #333333;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid #333333;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    background-color: #b08d55;
}

.btn-secondary:hover {
    background-color: #333333;
    color: #ffffff;
}

.hero-image,
.about-img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.top-advertisement {
    background-color: #f2f2f2;
    text-align: center;
    padding: 8px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.top-ad-text {
    margin: 0;
    font-size: 12px;
    color: #666666;
    font-family: inherit;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.page-loader.hidden-loader {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-title {
    font-size: 32px;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #c9a063;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desktop-nav {
    display: none;
}

.nav-item {
    display: inline-block;
    margin: 0 15px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
}

.desktop-cta {
    display: none;
}

.mobile-menu-toggle {
    display: block;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #1a1a1a;
    transition: 0.3s;
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

.mobile-nav-menu.open-menu {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.mobile-logo {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
}

.close-btn {
    background: none;
    border: none;
    font-size: 35px;
    color: #1a1a1a;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-item {
    margin-bottom: 25px;
}

.mobile-nav-link {
    font-size: 18px;
    font-weight: 500;
    display: block;
}

.mobile-cta-wrapper {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eeeeee;
}

.mobile-cta {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-overlay.show-overlay {
    opacity: 1;
    pointer-events: auto;
}

.main-content {
    min-height: calc(100vh - 400px);
}

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

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 30px;
}

.section-text {
    font-size: 16px;
    color: #555555;
    margin-bottom: 20px;
}

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

.hero-section {
    background-color: #ffffff;
    padding: 60px 20px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-text-content {
    text-align: center;
    max-width: 600px;
}

.hero-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: #666666;
    margin-bottom: 30px;
}

.hero-btn {
    font-size: 18px;
    padding: 15px 35px;
}

.about-section {
    background-color: #faf9f6;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-us-section {
    background-color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background-color: #faf9f6;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

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

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-desc {
    font-size: 15px;
    color: #666666;
    margin: 0;
}

.testimonials-section {
    background-color: #faf9f6;
}

.testimonials-slider {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
    font-size: 16px;
    font-style: italic;
    color: #555555;
    margin-top: 0;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eeeeee;
    padding-top: 15px;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
}

.author-rating {
    color: #c9a063;
    font-size: 18px;
}

.faqs-section {
    background-color: #ffffff;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #dddddd;
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

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

.faq-text {
    padding-bottom: 15px;
    color: #555555;
    margin: 0;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding-top: 60px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
    color: #c9a063;
}

.footer-list-item {
    margin-bottom: 10px;
    color: #cccccc;
    font-size: 14px;
}

.footer-text {
    color: #cccccc;
    font-size: 14px;
    margin: 0;
}

.footer-bottom {
    background-color: #111111;
    padding: 20px;
    text-align: center;
}

.footer-ad-note {
    font-size: 11px;
    color: #888888;
    max-width: 800px;
    margin: 0 auto 15px auto;
    font-family: inherit;
    line-height: 1.5;
}

.copyright-text {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: bottom 0.5s ease;
    padding: 20px;
    box-sizing: border-box;
}

.cookie-popup.show-cookie {
    bottom: 0;
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cookie-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 10px;
}

.cookie-text {
    font-size: 14px;
    color: #555555;
    margin-bottom: 20px;
}

.cookie-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* Modals */
.footer-link-btn {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    font: inherit;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.footer-link-btn:hover {
    color: #c9a063;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.show-modal {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.show-modal .modal-box {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #1a1a1a;
    cursor: pointer;
    line-height: 1;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 20px;
}

.modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-list-item,
.modal-text {
    font-size: 16px;
    color: #555555;
    margin-bottom: 10px;
}

.modal-box.modal-large {
    max-width: 700px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.modal-scroll-content {
    overflow-y: auto;
    padding-right: 15px;
}

/* Scrollbar styling for modal */
.modal-scroll-content::-webkit-scrollbar {
    width: 6px;
}

.modal-scroll-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal-scroll-content::-webkit-scrollbar-thumb {
    background: #c9a063;
    border-radius: 4px;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }

    .desktop-cta {
        display: block;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .hero-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

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

    .hero-image-wrapper {
        flex: 1;
    }

    .about-container {
        flex-direction: row;
        align-items: center;
    }

    .about-image-wrapper {
        flex: 1;
    }

    .about-text-wrapper {
        flex: 1;
        padding-left: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-slider {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}