* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
    text-decoration: none;
}

/*.logo {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 8px;*/
/*    font-size: 20px;*/
/*    font-weight: 600;*/
/*    color: #000;*/
/*    text-decoration: none;*/
/*}*/

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: #2563eb;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-login {
    background-color: transparent;
    color: #333;
    border: 2px solid #e5e7eb;
}

.btn-login:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.btn-signup {
    background-color: #2563eb;
    color: white;
}

.btn-signup:hover {
    background-color: #1d4ed8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1001;
}

.hamburger-icon,
.close-icon {
    width: 28px;
    height: 28px;
    position: relative;
}

.hamburger-icon span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.close-icon {
    display: none;
    position: relative;
}

.close-icon::before,
.close-icon::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background-color: #333;
    top: 50%;
    left: 0;
    border-radius: 2px;
}

.close-icon::before {
    transform: rotate(45deg);
}

.close-icon::after {
    transform: rotate(-45deg);
}

.hamburger.active .hamburger-icon {
    display: none;
}

.hamburger.active .close-icon {
    display: block;
}

/* Mobile Styles */
@media (max-width: 480px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        width: 100%;
    }

    .nav-link {
        font-size: 16px;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        padding: 20px;
        gap: 12px;
    }

    .btn {
        /*width: 100%;*/
        max-width: 300px;
        padding: 8px 18px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }

    .logo {
        font-size: 18px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .nav-menu {
        top: 60px;
    }
}

/* Hero Section Styles */
.hero {
    background-color: #ffffff;
    padding: 60px 20px 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin: 0;
}

.hero-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.hero-btn-import {
    background-color: #fbbf24;
    color: #000;
}

.hero-btn-import:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
}

.hero-btn-create {
    background-color: #2563eb;
    color: white;
}

.hero-btn-create:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.hero-feature {
    background-color: #f3f4f6;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.feature-text {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.feature-btn {
    background-color: #7c3aed;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-family: inherit;
}

.feature-btn:hover {
    background-color: #6d28d9;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.resume-preview {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.resume-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background-color: #f3f4f6;
    min-height: 500px;
    object-fit: cover;
}

.preview-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.badge-text strong {
    font-size: 16px;
    font-weight: 700;
}

.badge-text span {
    font-size: 14px;
}

.ai-help-card {
    position: absolute;
    bottom: 30px;
    right: -50px;
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 15px;
    max-width: 280px;
}

.card-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.card-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0 0 8px 0;
}

.card-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.trusted-by {
    max-width: 1200px;
    margin: 60px auto 0;
    text-align: center;
}

.trusted-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.company-logo {
    height: 40px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    background-color: #e5e7eb;
    padding: 10px 20px;
    border-radius: 8px;
}

.company-logo:hover {
    opacity: 1;
}

/* Hero Section Mobile Styles */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .preview-badge {
        right: 10px;
        top: 10px;
    }

    .ai-help-card {
        right: 10px;
        bottom: 20px;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 20px 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-wrap: nowrap;
    }

    

    .hero-btn {
        width: fit-content;
    }

    .hero-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .feature-btn {
        align-self: center;
    }

    .company-logos {
        gap: 30px;
    }

    .company-logo {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .preview-badge {
        padding: 8px 12px;
        font-size: 12px;
    }

    .badge-text strong {
        font-size: 14px;
    }

    .badge-text span {
        font-size: 12px;
    }

    .ai-help-card {
        padding: 15px;
        max-width: 220px;
    }

    .card-content h4 {
        font-size: 14px;
    }

    .card-content p {
        font-size: 12px;
    }

    .company-logos {
        gap: 20px;
    }

    .company-logo {
        height: 30px;
        padding: 8px 15px;
    }
}

/* How It Works Section Styles */
.how-it-works {
    background: linear-gradient(180deg, #fef3c7 0%, #ffffff 100%);
    padding: 80px 20px;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin: 0 0 60px 0;
    line-height: 1.2;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    background-color: #fff;
}

.step-icon {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /*background-color: #f3f4f6;*/
    border-radius: 12px;
    padding: 20px;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    margin: 0;
    max-width: 250px;
}

.cta-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.cta-btn {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cta-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

/* How It Works Section Mobile Styles */
@media (max-width: 968px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    /*.steps-container {*/
    /*    grid-template-columns: 1fr;*/
    /*    gap: 50px;*/
    /*    max-width: 400px;*/
    /*    margin: 0 auto 40px;*/
    /*}*/
    
     .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .step-card {
        gap: 15px;
    }

    .step-icon {
        width: 120px;
        height: 120px;
    }

    .step-title {
        font-size: 20px;
        max-width: 100%;
    }

    .cta-container {
        margin-top: 40px;
    }

    .cta-btn {
        /*width: 100%;*/
        max-width: 400px;
        padding: 16px 32px;
    }
}

@media (max-width: 480px) {
    .how-it-works {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .steps-container {
        gap: 40px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .step-icon {
        width: 120px;
        height: 120px;
    }

    .step-title {
        font-size: 18px;
    }

    .cta-btn {
        font-size: 15px;
    }
}


/* Video Section Styles */
.video-section {
    background: linear-gradient(180deg, #e0e7ff 0%, #f3f4f6 50%, #ffffff 100%);
    padding: 80px 20px;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #1e3a5f;
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.video-card {
    position: relative;
}

.video-thumbnail {
    position: relative;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 50%, transparent 100%);
}

.video-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.video-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.resume-now-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    line-height: 1;
}

.logo-icon-small {
    font-size: 16px;
}

.logo-text-small {
    line-height: 1.2;
}

.video-title {
    margin: 0;
    line-height: 1.1;
}

.title-create,
.title-your,
.title-resume {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: #000;
}

.video-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 10px 0 0 0;
}

.video-content {
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.content-description {
    font-size: 18px;
    color: #e5e7eb;
    line-height: 1.6;
    margin: 0;
}

/* Video Section Mobile Styles */
@media (max-width: 968px) {
    .video-container {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }

    .content-title {
        font-size: 36px;
    }

    .content-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 60px 20px;
    }

    .video-container {
        padding: 30px;
        border-radius: 20px;
    }

    .video-overlay {
        padding: 20px;
    }

    .title-create,
    .title-your,
    .title-resume {
        font-size: 36px;
    }

    .video-subtitle {
        font-size: 16px;
    }

    .content-title {
        font-size: 32px;
    }

    .content-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 50px 15px;
    }

    .video-container {
        padding: 20px;
        border-radius: 16px;
        gap: 30px;
    }

    .video-overlay {
        padding: 15px;
    }

    .video-label {
        font-size: 14px;
    }

    .resume-now-logo {
        font-size: 10px;
    }

    .logo-icon-small {
        font-size: 14px;
    }

    .title-create,
    .title-your,
    .title-resume {
        font-size: 28px;
    }

    .video-subtitle {
        font-size: 14px;
    }

    .content-title {
        font-size: 28px;
    }

    .content-description {
        font-size: 14px;
    }
}


/* Why Use Section Styles */
.why-use-section {
    background: linear-gradient(180deg, #fef3c7 0%, #fef3c7 50%, #ffffff 100%);
    padding: 80px 20px;
}

.why-use-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-use-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin: 0 0 80px 0;
    line-height: 1.2;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row-reverse {
    direction: rtl;
}

.feature-row-reverse > * {
    direction: ltr;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-heading {
    font-size: 36px;
    font-weight: 700;
    color: #065FDF;
    margin: 0;
    line-height: 1.3;
}

.feature-description {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

.feature-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background-color: #f3f4f6;
    min-height: 400px;
    object-fit: cover;
}

/* Why Use Section Mobile Styles */
@media (max-width: 968px) {
    .feature-row {
        gap: 50px;
        margin-bottom: 80px;
    }

    .feature-heading {
        font-size: 32px;
    }

    .feature-description {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .why-use-section {
        padding: 60px 20px;
    }

    .why-use-main-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .feature-row-reverse {
        direction: ltr;
    }

    .feature-row-reverse .feature-content {
        order: 1;
    }

    .feature-row-reverse .feature-image {
        order: 2;
    }

    .feature-content {
        text-align: center;
        /*order: 2;*/
    }

    .feature-image {
        order: 1;
    }

    .feature-heading {
        font-size: 28px;
    }

    .feature-description {
        font-size: 16px;
    }

    .feature-img {
        max-width: 400px;
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .why-use-section {
        padding: 50px 20px;
    }

    .why-use-main-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .feature-row {
        gap: 25px;
        margin-bottom: 50px;
    }

    .feature-heading {
        font-size: 24px;
    }

    .feature-description {
        font-size: 15px;
    }

    .feature-img {
        max-width: 100%;
        min-height: 300px;
    }
}


/* FAQ Section Styles */
.faq-section {
    background: linear-gradient(180deg, #e0e7ff 0%, #ffffff 100%);
    padding: 80px 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin: 0 0 50px 0;
    line-height: 1.2;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.faq-question span:first-child {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: #000;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 0 25px 0;
    animation: slideDown 0.3s ease;
}

.faq-answer p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin: 0 0 15px 0;
    background-color: #f3f4f6;
    padding: 20px;
    border-radius: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Section Mobile Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 20px 0;
    }

    .faq-question span:first-child {
        font-size: 16px;
    }

    .faq-icon {
        font-size: 24px;
    }

    .faq-answer {
        padding: 0 0 20px 0;
    }

    .faq-answer p {
        font-size: 15px;
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 50px 15px;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 18px 0;
    }

    .faq-question span:first-child {
        font-size: 15px;
        padding-right: 15px;
    }

    .faq-icon {
        font-size: 22px;
        width: 25px;
        height: 25px;
    }

    .faq-answer p {
        font-size: 14px;
        padding: 15px;
    }
}




/* FAQ Section Styles */
.faq-section {
    background: linear-gradient(180deg, #e0e7ff 0%, #ffffff 100%);
    padding: 80px 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin: 0 0 50px 0;
    line-height: 1.2;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.faq-question span:first-child {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: #000;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 0 25px 0;
    animation: slideDown 0.3s ease;
}

.faq-answer p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin: 0 0 15px 0;
    background-color: #f3f4f6;
    padding: 20px;
    border-radius: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Section Mobile Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 20px 0;
    }

    .faq-question span:first-child {
        font-size: 16px;
    }

    .faq-icon {
        font-size: 24px;
    }

    .faq-answer {
        padding: 0 0 20px 0;
    }

    .faq-answer p {
        font-size: 15px;
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 50px 15px;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 18px 0;
    }

    .faq-question span:first-child {
        font-size: 15px;
        padding-right: 15px;
    }

    .faq-icon {
        font-size: 22px;
        width: 25px;
        height: 25px;
    }

    .faq-answer p {
        font-size: 14px;
        padding: 15px;
    }
}

/* Footer CTA Section Styles */
.footer-cta-section {
    background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 50%, #6d28d9 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.footer-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.footer-cta-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

.footer-cta-btn {
    background-color: #fbbf24;
    color: #000;
    border: none;
    padding: 18px 40px;
    border-radius: 35px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    align-self: flex-start;
}

.footer-cta-btn:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.footer-cta-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-cta-img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background-color: #f3f4f6;
    min-height: 400px;
    object-fit: cover;
}

.sparkle {
    position: absolute;
    color: #fbbf24;
    font-size: 24px;
    animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 50%;
    right: -5%;
    animation-delay: 1s;
}

.sparkle-3 {
    bottom: 20%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) scale(1.1);
        opacity: 0.8;
    }
}

/* Footer Styles */
.footer {
    background-color: #000;
    color: #fff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 0;
}

/* Desktop Footer Top */
.footer-top-desktop {
    display: grid;
    grid-template-columns: 2fr auto 1fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.footer-tagline {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    max-width: 400px;
    margin: 0;
}

.footer-top-cta-btn {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.footer-top-cta-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Mobile Footer Bottom - Hidden on Desktop */
.footer-mobile-bottom {
    display: none;
}

.footer-mobile-cta-btn {
    display: none;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 50px 0;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-list li a:hover {
    color: #fff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-label {
    font-size: 14px;
    color: #999;
    margin: 10px 0 5px 0;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #fbbf24;
}

.schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.schedule-list li {
    color: #999;
    font-size: 13px;
}

/* Footer Bottom - White Section */
.footer-bottom-white {
    background-color: #fff;
    padding: 50px 0;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.badges {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-img {
    height: 100px;
    width: auto;
    background-color: #f3f4f6;
    border-radius: 12px;
    padding: 10px;
}

.footer-legal {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-legal p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #fff;
    color: #000;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top span:first-child {
    font-size: 24px;
    line-height: 1;
}

.back-to-top span:last-child {
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.back-to-top:hover {
    background-color: #fbbf24;
    transform: translateY(-5px);
}

/* Footer Mobile Styles */
@media (max-width: 968px) {
    .footer-cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-cta-title {
        font-size: 38px;
        text-align: center;
    }

    .footer-cta-btn {
        align-self: center;
        width: 100%;
        max-width: 400px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-cta-section {
        padding: 60px 20px;
    }

    .footer-cta-title {
        font-size: 32px;
    }

    .footer-cta-btn {
        font-size: 16px;
        padding: 16px 32px;
    }

    .footer-cta-img {
        max-width: 400px;
        min-height: 350px;
    }

    .footer-container {
        padding: 40px 20px 0;
    }

    /* Hide desktop footer top */
    .footer-top-desktop {
        display: none;
    }

    /* Show mobile footer bottom */
    .footer-mobile-bottom {
        display: flex;
        flex-direction: column;
        gap: 25px;
        align-items: center;
        text-align: center;
        padding: 30px 0;
        border-bottom: 1px solid #333;
    }

    .footer-mobile-cta-btn {
        display: block;
        background-color: #2563eb;
        color: white;
        border: none;
        padding: 16px 32px;
        border-radius: 30px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: inherit;
        /*width: 100%;*/
        max-width: 400px;
    }

    .footer-mobile-cta-btn:hover {
        background-color: #1d4ed8;
    }

    /* Footer Links Accordion */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .footer-column {
        border-bottom: 1px solid #333;
        padding: 0;
        gap: 0;
    }

    .footer-column:last-child {
        border-bottom: none;
    }

    .footer-heading  {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        position: relative;
    }
    .footer-heading,a{
        text-decoration: none;
        color: white;

    }

    .footer-heading::after {
        content: '🔽';
        font-size: 20px;
        font-weight: 600;
        transition: transform 0.3s ease;
    }

    .footer-column.active .footer-heading::after {
        transform: rotate(180deg);
    }

    .footer-list,
    .contact-info {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
        padding: 0;
    }

    .footer-column.active .footer-list,
    .footer-column.active .contact-info {
        max-height: 500px;
        opacity: 1;
        padding-bottom: 20px;
    }

    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-link {
        width: 50px;
        height: 50px;
    }

    .badges {
        gap: 20px;
    }

    .badge-img {
        height: 80px;
    }

    .footer-bottom-white {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .footer-cta-title {
        font-size: 28px;
    }

    .footer-cta-btn {
        font-size: 15px;
        padding: 14px 28px;
    }

    .footer-cta-img {
        max-width: 100%;
        min-height: 300px;
    }

    .sparkle {
        font-size: 18px;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .badge-img {
        height: 70px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .back-to-top span:first-child {
        font-size: 20px;
    }

    .back-to-top span:last-child {
        font-size: 10px;
    }

    .footer-heading {
        font-size: 16px;
    }
}

