  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            background: white;
            color: #1d2231;
            overflow-x: hidden;
        }

        .container {
            max-width: 1920px;
            margin: 0 auto;
            position: relative;
        }

        /* Header */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 40px 150px;
            background: white;
            position:relative;
        }

        .logo {
            width: 200px;
            height: 45px;
        }

        .burger-menu {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 24px;
            padding: 10px;
        }

       nav {
            display: flex;
            gap: 40px;
            padding-left: 100px;
            font-family: 'Work Sans', sans-serif;
            font-size: 16px;
            font-weight: 600;
        }

        nav a {
            text-decoration: none;
            color: #1d2231;
            transition: color 0.3s;
        }

        nav a:first-child,
        nav a:hover {
            color: #54e3bd;
        }

        /* Hero Section */
        .hero {
            background:  linear-gradient(to right, white, rgba(84, 227, 189, 0.5));
            padding: 50px 200px;
            position: relative;
            display: flex;
            align-items: start;
        }

        .hero-shield {
            position: absolute;
            right: 500px;
            top: 50px;
            object-fit: cover;
        }

        .hero-image {
            position: absolute;
            right: 117px;
            top: 80px;
            width: 556px;
            height: 500px;
            object-fit: cover;
        }

        .hero-content {
            max-width: 500px;
            z-index: 1;
        }

        .hero-title {
            font-family: 'Alexandria', sans-serif;
            font-size: 40px;
            color: #3f6cb3;
            margin-bottom: 40px;
        }

        .hero-description {
            font-size: 18px;
            color: #63656e;
            margin-bottom: 60px;
        }

        .hero-description strong {
            font-weight: 700;
        }

        .email-form {
            display: flex;
            gap: 30px;
            margin-bottom: 28px;
        }

        .email-input {
            flex: 1;
            padding: 16px 28px;
            border: 1px solid #dbdbdb;
            border-radius: 100px;
            font-size: 14px;
            color: #63656e;
        }

        .btn-primary {
            padding: 16px 28px;
            background: #3f6cb3;
            color: white;
            border: none;
            border-radius: 100px;
            font-family: 'Work Sans', sans-serif;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.3s;
        }

        .btn-primary:hover {
            background: #2e5490;
        }

        .help-text {
            font-size: 14px;
            color: #63656e;
        }

        .help-text a {
            color: #3f6cb3;
            text-decoration: underline;
        }

        /* Features Section */
        .features {
            padding: 100px 100px;
            text-align: center;
        }

        .section-title {
            font-family: 'Alexandria', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: #3f6cb3;
            margin-bottom: 60px;
        }

        .section-subtitle {
            font-family: 'Open Sans', sans-serif;
            font-size: 16px;
            line-height: 28px;
            text-transform: uppercase;
            color: #54e3bd;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .section-subtitle.with-dash::before {
            content: '';
            display: inline-block;
            width: 48px;
            height: 3px;
            background: #54e3bd;
            margin-right: 16px;
            vertical-align: middle;
        }

       
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            padding-top: 60px;
        }

        .feature-card {
            background: #f4f4f4;
            border-radius: 0 0 36px 36px;
            padding: 100px 20px 20px;
            text-align: center;
            position: relative;
        }

        .feature-icon {
            position: absolute;
            top: -62px;
            left: 50%;
            transform: translateX(-50%);
            width: 124px;
            height: 124px;
            background: #54e3bd;
            border-radius: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-title {
            font-family: 'Alexandria', sans-serif;
            font-size: 20px;
            line-height: 36px;
            font-weight: 700;
            color: #3f6cb3;
            margin-bottom: 16px;
        }

        .feature-description {
            font-size: 14px;
            line-height: 28px;
            padding-left: 30px;
            padding-right: 30px;
            padding-bottom:30px;
            color: #63656e;
        }

        /* About Section */
        .about-section {
            padding: 100px 100px;
            display: flex;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            width: 350px;
            height: 500px;
            object-fit: cover;
            border-radius: 36px;
        }

        .about-nora-logo {
            width: 45px;
            height: auto;
            margin-bottom: 20px;
            transform: translate(-380px, -180px);
        }
        .about-content {
            flex: 1;
        }

        .about-list {
            list-style: none;
            font-size: 16px;
            line-height: 20px;
            color: #63656e;
        }

        .about-list li {
            padding-left: 30px;
            position: relative;
            margin-bottom: 16px;
        }

        .about-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #3f6cb3;
            font-weight: 700;
        }

        .buttons-group {
            display: flex;
            gap: 48px;
            align-items: center;
            margin-top: 60px;
        }

        .btn-secondary {
            display: flex;
            align-items: center;
            gap: 20px;
            background: white;
            border: 1px solid #dbdbdb;
            border-radius: 100px;
            padding: 0;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            border-color: #3f6cb3;
        }

        .play-icon {
            width: 71px;
            height: 72px;
            border-radius: 50%;
            background: white;
            border: 1px solid #dbdbdb;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-secondary span {
            font-family: 'Work Sans', sans-serif;
            font-size: 20px;
            font-weight: 600;
            color: #1d2231;
            padding-right: 20px;
        }

        /* Banner Section */
        .banner {
            margin: 250px 250px;
            margin-top: -450px;
            background: radial-gradient(circle, rgba(14,151,115,1) 0%, rgba(32,170,133,1) 25%, rgba(49,189,152,1) 50%, rgba(84,227,189,1) 100%);
            border-radius: 36px;
            padding: 60px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            align-items: start;

            position:relative; 
            z-index:10; 
            transform: translate(0, 450px);
        }

        .banner-image {
            width: 280px;
            height: auto;
            object-fit: cover;
            border-radius: 0 0 36px 0;
        }

        .banner-title {
            font-family: 'Alexandria', sans-serif;
            font-size: 36px;
            font-weight: 700;
            padding: 50px 50px;
        }

        .banner-title .primary {
            color: #3f6cb3;
        }

        .banner-title .white {
            color: white;
        }

        .banner-features {
            display: flex;
            flex-direction: column;
            gap: 28px;
            padding: 50px 0;
        }

        .banner-feature {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .banner-feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-feature-text h3 {
            font-family: 'Alexandria', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: #3f6cb3;
            margin-bottom: 8px;
        }

        .banner-feature-text p {
            font-size: 14px;
            color: white;
        }

        /* Service Section */
        .service-section {
            background: #3f6cb3;
            padding: 100px 0;
            color: white;
            padding-top: 300px;
            position: relative; 
            z-index:1;
        }

        .service-header {
            text-align: center;
            padding: 0 255px;
            margin-bottom: 100px;
        }

        .service-header .section-subtitle {
            color: #54e3bd;
        }

        .service-header .section-title {
            color: white;
        }

        .service-header p {
            font-size: 20px;
            line-height: 32px;
            color: #f4f4f4;
            max-width: 930px;
            margin: 0 auto;
        }

        .service-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding-left: 200px;
            padding-right: 200px;
        }

        .service-card {
            display: flex;
            flex-direction: column;
        }

        .service-card-image {
            height: 200px;
            border-radius: 36px 36px 0 0;
            object-fit: cover;
        }

        .service-card-content {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 0 0 36px 36px;
            padding: 48px;
            text-align: center;
            flex: 1;
        }

        .service-card-title {
            font-family: 'Alexandria', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: #54e3bd;
            margin-bottom: 16px;
        }

        .service-card-description {
            font-size: 16px;
            color: #f4f4f4;
            margin-bottom: 16px;
        }

        .service-card-link {
            font-family: 'Work Sans', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #54e3bd;
            text-decoration: none;
        }

        .dots {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 60px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #dbdbdb;
            opacity: 0.4;
        }

        .dot.active {
            background: #54e3bd;
            opacity: 1;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 255px;
            display: flex;
            gap: 30px;
        }

        .faq-content {
            flex: 1;
        }

        .faq-accordions {
            flex: 1;
            background: white;
            border-radius: 36px;
            padding: 40px;
        }

        .accordion-item {
            border-bottom: 1px solid #dbdbdb;
            padding: 28px 0;
        }

        .accordion-item:first-child {
            padding-top: 0;
        }

        .accordion-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .accordion-title {
            font-family: 'Alexandria', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: #1d2231;
        }

        .accordion-icon {
            width: 20px;
            height: 20px;
            color: #54e3bd;
        }

        .accordion-body {
            font-size: 16px;
            color: #63656e;
            margin-top: 28px;
        }

        .check-item {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .check-icon {
            width: 40px;
            height: 40px;
            background: #54e3bd;
            border-radius: 50%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .check-content h3 {
            font-family: 'Alexandria', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: #1d2231;
            margin-bottom: 16px;
        }

        .check-content p {
            font-size: 14px;
            color: #63656e;
        }

        /* Testimonials Section */
        .testimonials-section {
            background: #3f6cb3;
            padding: 100px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .testimonials-header .section-subtitle {
            color: #54e3bd;
            text-transform: uppercase;
        }

        .testimonials-header .section-title {
            color: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            padding: 0 50px;
        }

        .testimonial-card {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 36px;
            padding: 48px;
            color: white;
        }

        .testimonial-text {
            font-size: 12px;
            margin-bottom: 28px;
        }

        .testimonial-author {
            font-family: 'Work Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
        }

        .testimonial-role {
            color: #54e3bd;
        }

        /* Team Section */
        .team-section {
            padding: 200px 200px;
            position: relative;
           display: grid;
           grid-template-columns: repeat(2, 1fr);

        }

        .team-content {
            max-width: 600px;
            padding-bottom: 40px;
        }

        .team-images {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .team-card {
            width: 240px;
            height: 320px;
            border-radius: 36px;
            overflow: hidden;
            position: relative;
        }
        
        .team-card.up {
        margin-bottom: 70px;
        }

        .team-card.down {
            margin-top: 70px;
        }

        .team-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position:  top;
        }
        .team-people
        {
            display: flex;
            flex-direction: row;
            gap: 30px;
        }
        .team-info {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: white;
            border-radius: 18px;
            padding: 20px;
        }

        .team-name {
            font-family: 'Alexandria', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: #3f6cb3;
            margin-bottom: 4px;
        }

        .team-role {
            font-family: 'Alexandria', sans-serif;
            font-size: 10px;
            color: #63656e;
        }

        .team-stat {
            background: white;
            border-radius: 36px;
            box-shadow: 0px 4px 40px 0px rgba(0,0,0,0.15);
            padding: 28px 40px;
            display: flex;
            gap: 16px;
            align-items: center;
            margin-top: -70px;
            width: 240px;
            
        }

        .team-stat-number {
            font-family: 'Alexandria', sans-serif;
            font-size: 50px;
            font-weight: 700;
            color: #54e3bd;
        }

        .team-stat-text {
            font-family: 'Open Sans', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #1d2231;
        }

        /* Contact Section */
        .contact-section {
            padding: 0px 200px 100px 200px;
            display: flex;
            gap: 30px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-form-wrapper {
            width: 570px;
            background: white;
            border-radius: 36px;
            box-shadow: 0px 4px 40px 0px rgba(0,0,0,0.15);
            padding: 60px 40px;
            margin-left: 20px;
        }

        .contact-form-title {
            font-family: 'Work Sans', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: #1d2231;
            margin-bottom: 28px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 16px 28px;
            border: 1px solid #dbdbdb;
            border-radius: 100px;
            font-family: 'Open Sans', sans-serif;
            font-size: 14px;
            color: #63656e;
        }

        .form-textarea {
            border-radius: 36px;
            height: 180px;
            resize: none;
        }

        .btn-submit {
            width: 100%;
            padding: 16px 28px;
            background: #54e3bd;
            color: white;
            border: none;
            border-radius: 100px;
            font-family: 'Work Sans', sans-serif;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.3s;
        }

        .btn-submit:hover {
            background: #3fc9a3;
        }

        .contact-items {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .contact-row {
            display: flex;
            gap: 30px;
        }

        .contact-item {
            flex: 1;
            display: flex;
            gap: 20px;
        }

        .contact-icon {
            width: 30px;
            height: 30px;
            background: #54e3bd;
            border-radius: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin: 6px;
        }

        .contact-item-content h3 {
            font-family: 'Work Sans', sans-serif;
            font-size: 20px;
            font-weight: 600;
            color: #1d2231;
            margin-bottom: 16px;
        }

        .contact-item-content p {
            font-size: 14px;
            color: #63656e;
        }

        /* Footer */
        footer {
            background: #54e3bd;
            padding: 100px 200px;
        }

        .footer-content {
            display: flex;
            gap: 30px;
            margin-bottom: 50px;
        }

        .footer-col {
            flex: 1;
        }

        .footer-title {
            font-family: 'Alexandria', sans-serif;
            font-size: 20px;
            font-weight: 600;
            color: #3f6cb3;
            margin-bottom: 28px;
        }

        .footer-description {
            font-size: 14px;
            color: #1d2231;
            margin-bottom: 28px;
        }

        .footer-description strong {
            font-family: 'Open Sans', sans-serif;
            font-weight: 700;
        }

        .social-media {
            display: flex;
            gap: 8px;
            width: 200px;
            justify-content: space-around;
        }

        .social-link {
            width: 22px;
            height: 22px;
            background: white;
            border-radius: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
        }

        .social-link:hover {
            transform: scale(1.1);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            font-size: 16px;
            color: #1d2231;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .newsletter-input {
            width: 100%;
            padding: 16px 28px;
            border: none;
            border-radius: 100px;
            font-size: 16px;
            color: #3f6cb3;
        }

        .btn-newsletter {
            width: 100%;
            padding: 16px 28px;
            background: #3f6cb3;
            color: white;
            border: none;
            border-radius: 100px;
            font-family: 'Alexandria', sans-serif;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.3s;
        }

        .btn-newsletter:hover {
            background: #2e5490;
        }

        .copyright {
            background: white;
            border-radius: 36px;
            padding: 28px 50px;
            text-align: center;
        }

        .copyright p {
            font-family: 'Work Sans', sans-serif;
            font-size: 18px;
            line-height: 28px;
            font-weight: 500;
            color: #3f6cb3;
        }

       /* ========================================
   MOBILE RESPONSIVE STYLES
   Add this section at the end of your CSS file
   ======================================== */

/* Tablet and smaller devices (max-width: 1024px) */
@media (max-width: 1024px) {
    /* Header */
    header {
        padding: 30px 50px;
    }

    nav {
        padding-left: 50px;
        gap: 30px;
        font-size: 14px;
    }



    /* Hero Section */
    .hero {
        padding: 40px 50px;
    }

    .hero-shield {
        right: 300px;
        width: 150px;
    }

    .hero-image {
        right: 50px;
        width: 400px;
        height: 400px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    /* Features Section */
    .features {
        padding: 80px 50px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 80px 30px;
    }

    /* About Section */
    .about-section {
        padding: 80px 50px;
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-nora-logo {
        transform: translate(-50px, -50px);
    }

    /* Banner Section */
    .banner {
        margin: 80px 50px;
        margin-top: -150px;
        grid-template-columns: 1fr;
        gap: 40px;
        transform: translate(0, 110px);
    }

    .banner-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .banner-title {
        padding: 20px;
        text-align: center;
    }

    /* Service Section */
    .service-header {
        padding: 0 50px;
    }

    .service-cards {
        grid-template-columns: 1fr;
        padding: 0 50px;
    }

    /* FAQ Section */
    .faq-section {
        padding: 80px 50px;
        flex-direction: column;
    }

    /* Testimonials Section */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 30px;
    }

    /* Team Section */
    .team-section {
        padding: 100px 50px;
         grid-template-columns: 1fr;
    }

    .team-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .team-images {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Contact Section */
    .contact-section {
        padding: 0 50px 80px 50px;
        flex-direction: column;
    }

    .contact-form-wrapper {
        width: 100%;
        margin-left: 0;
    }

    /* Footer */
    footer {
        padding: 80px 50px;
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-col {
        min-width: calc(50% - 15px);
    }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    /* Header */
    header {
        padding: 20px 30px;
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
        position:relative;
    }

    .logo {
        width: 150px;
        height: auto;
        order:1;
    }

    
    
    .burger-menu {
        display: block;
        order:2;
        margin-left: auto;
        z-index: 100;
    }

    nav {
        display:none;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        padding: 15px;
        padding-left: 0;
        background: #f3f4f6;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 99;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        order:3;
    }

      nav.active {
        display: flex;
    }

    /* Hero Section */
    .hero {
        padding: 40px 30px 50px 30px;
        flex-direction: column;
        background: linear-gradient(to bottom, white, rgba(84, 227, 189, 0.3));
    }

    .hero-shield {
        transform: translate(50px, -20px)
    }

    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 30px auto 0;
    }

    .hero-content {
        max-width: 100%;
        padding-top: 20px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .email-form {
        flex-direction: column;
        gap: 15px;
    }

    .email-input,
    .btn-primary {
        width: 100%;
    }

    /* Features Section */
    .features {
        padding: 60px 30px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 80px;
        padding-top: 40px;
    }

    .feature-card {
        padding: 80px 20px 20px;
    }

    .feature-icon {
        width: 100px;
        height: 100px;
        top: -50px;
    }

    .feature-icon img {
        width: 100%;
        height: 100%;
    }

    .feature-title {
        font-size: 18px;
        line-height: 28px;
    }

    .feature-description {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* About Section */
    .about-section {
        padding: 60px 30px;
    }

    .about-image {
        width: 100%;
        height: auto;
    }

    .about-nora-logo {
        transform: translate(0, 0);
        position: relative;
        margin-bottom: 20px;
    }

    .buttons-group {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Banner Section */
    .banner {
        margin: 60px 30px;
        margin-top: -100px;
        padding: 40px 30px;
        transform: translate(0, 100px);
    }

    .banner-image {
        width: 100%;
        max-width: 250px;
    }

    .banner-title {
        font-size: 24px;
        padding: 20px 0;
    }

    .banner-features {
        padding: 20px 0;
        gap: 20px;
    }

    .banner-feature {
        gap: 16px;
    }

    .banner-feature-icon {
        width: 50px;
        height: 50px;
    }

    .banner-feature-icon img {
        width: 40px;
        height: 40px;
    }

    .banner-feature-text h3 {
        font-size: 18px;
    }

    .banner-feature-text p {
        font-size: 16px;
    }

    /* Service Section */
    .service-section {
        padding: 60px 0;
        padding-top: 100px;
    }

    .service-header {
        padding: 0 30px;
        margin-bottom: 60px;
    }

    .service-header p {
        font-size: 16px;
        line-height: 26px;
    }

    .service-cards {
        grid-template-columns: 1fr;
        padding: 0 30px;
        gap: 40px;
    }

    .service-card-content {
        padding: 30px;
    }

    .service-card-title {
        font-size: 16px;
    }

    .service-card-description {
        font-size: 14px;
    }

    .dots {
        margin-top: 40px;
        gap: 12px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    /* FAQ Section */
    .faq-section {
        padding: 60px 30px;
    }

    .faq-accordions {
        padding: 30px 20px;
    }

    .accordion-title {
        font-size: 16px;
        padding-right: 10px;
    }

    .accordion-body {
        font-size: 14px;
        margin-top: 16px;
    }

    .check-item {
        gap: 15px;
        margin-bottom: 30px;
    }

    .check-content h3 {
        font-size: 16px;
    }

    .check-content p {
        font-size: 13px;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 30px;
        gap: 20px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonial-author {
        font-size: 13px;
    }

    /* Team Section */
    .team-section {
        padding: 60px 30px;
        grid-template-columns: 1fr;
    }

    .team-content {
        max-width: 100%;
    }

    .team-images {
        flex-wrap: wrap;
        justify-content: center;
    }
    .team-people
    {
        flex-direction: column;
        align-items: center;
    }

    .team-card {
        width: 100%;
        max-width: 280px;
        height: 350px;
    }

    .team-card.up {
        margin-bottom: 0;
        margin-top:0;
        }
    .team-card.down {
        margin-top: 0;
        margin-bottom:0;
        }

    .team-stat {
        width: 100%;
        max-width: 280px;
        padding: 20px 30px;
        margin: 0px;
    }

   

    .team-stat-number {
        font-size: 40px;
    }

    .team-stat-text {
        font-size: 14px;
    }

    /* Contact Section */
    .contact-section {
        padding: 0 30px 60px 30px;
    }

    .contact-form-wrapper {
        padding: 40px 30px;
    }

    .contact-form-title {
        font-size: 18px;
    }

    .contact-row {
        flex-direction: column;
        gap: 30px;
    }

    .contact-item-content h3 {
        font-size: 18px;
    }

    /* Footer */
    footer {
        padding: 60px 30px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-col {
        min-width: 100%;
    }

    .footer-title {
        font-size: 18px;
    }

    .social-media {
        width: 100%;
        gap: 12px;
    }

    .copyright {
        padding: 20px 30px;
    }

    .copyright p {
        font-size: 14px;
        line-height: 24px;
    }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    /* Header */
    header {
        padding: 15px 20px;
    }

    .logo {
        width: 120px;
    }

    nav {
        gap: 15px;
        font-size: 13px;
    }

    /* Hero Section */
    .hero {
        padding: 30px 20px 50px 20px;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .btn-primary {
        padding: 14px 24px;
        font-size: 13px;
    }

    /* Features Section */
    .features {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .section-subtitle.with-dash::before {
        width: 36px;
        margin-right: 12px;
    }

    .features-grid {
        gap: 70px;
    }

    .feature-card {
        padding: 70px 15px 15px;
    }

    .feature-icon {
        width: 90px;
        height: 90px;
        top: -45px;
    }

    .feature-title {
        font-size: 16px;
        line-height: 24px;
    }

    .feature-description {
        font-size: 13px;
        line-height: 24px;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 20px;
    }

    /* About Section */
    .about-section {
        padding: 50px 20px;
    }

    .about-list {
        font-size: 14px;
    }

    .about-list li {
        padding-left: 20px;
    }

    /* Banner Section */
    .banner {
        margin: 50px 20px;
        margin-top: -80px;
        padding: 30px 20px;
        border-radius: 24px;
    }

    .banner-image {
        max-width: 200px;
        border-radius: 0 0 24px 0;
    }

    .banner-title {
        font-size: 20px;
        padding: 15px 0;
    }

    .banner-features {
        padding: 15px 0;
        gap: 15px;
    }

    .banner-feature {
        gap: 12px;
    }

    .banner-feature-icon {
        width: 45px;
        height: 45px;
    }

    .banner-feature-icon img {
        width: 40px;
        height: 40px;
    }

    .banner-feature-text h3 {
        font-size: 18px;
    }

    .banner-feature-text p {
        font-size: 16px;
    }

    /* Service Section */
    .service-section {
        padding: 50px 0;
        padding-top: 100px;
    }

    .service-header {
        padding: 0 20px;
        margin-bottom: 50px;
    }

    .service-header .section-title {
        font-size: 22px;
    }

    .service-header p {
        font-size: 14px;
        line-height: 24px;
    }

    .service-cards {
        padding: 0 20px;
        gap: 30px;
    }

    .service-card-image {
        height: 180px;
        border-radius: 24px 24px 0 0;
    }

    .service-card-content {
        padding: 25px 20px;
        border-radius: 0 0 24px 24px;
    }

    .service-card-title {
        font-size: 15px;
    }

    .service-card-description {
        font-size: 13px;
    }

    .service-card-link {
        font-size: 14px;
    }

    /* FAQ Section */
    .faq-section {
        padding: 50px 20px;
    }

    .faq-accordions {
        padding: 25px 15px;
        border-radius: 24px;
    }

    .accordion-title {
        font-size: 15px;
    }

    .accordion-body {
        font-size: 13px;
    }

    .check-item {
        margin-bottom: 25px;
    }

    .check-icon {
        width: 35px;
        height: 35px;
    }

    .check-icon img {
        width: 18px;
        height: 18px;
    }

    .check-content h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .check-content p {
        font-size: 12px;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-grid {
        padding: 0 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
        border-radius: 24px;
    }

    .testimonial-text {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .testimonial-author {
        font-size: 12px;
    }

    /* Team Section */
    .team-section {
        padding: 50px 20px;
        grid-template-columns: 1fr;
    }

    .team-card {
        max-width: 100%;
        height: 380px;
        border-radius: 24px;
    }

    .team-info {
        border-radius: 12px;
        padding: 15px;
    }

    .team-name {
        font-size: 13px;
    }

    .team-role {
        font-size: 9px;
    }

    .team-stat {
        max-width: 100%;
        padding: 20px 25px;
        border-radius: 24px;
    }

    .team-stat-number {
        font-size: 36px;
    }

    .team-stat-text {
        font-size: 13px;
    }

    /* Contact Section */
    .contact-section {
        padding: 0 20px 50px 20px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
        border-radius: 24px;
    }

    .contact-form-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .form-input,
    .form-textarea {
        padding: 14px 20px;
        font-size: 13px;
    }

    .form-textarea {
        height: 150px;
        border-radius: 24px;
    }

    .btn-submit {
        padding: 14px 20px;
        font-size: 11px;
    }

    .contact-items {
        gap: 30px;
    }

    .contact-item {
        gap: 15px;
    }

    .contact-icon {
        width: 28px;
        height: 28px;
    }

    .contact-icon img {
        width: 28px;
        height: 28px;
    }

    .contact-item-content h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .contact-item-content p {
        font-size: 13px;
    }

    /* Footer */
    footer {
        padding: 50px 20px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .footer-links li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .newsletter-input,
    .btn-newsletter {
        padding: 14px 20px;
        font-size: 14px;
    }

    .copyright {
        padding: 15px 20px;
        border-radius: 24px;
    }

    .copyright p {
        font-size: 12px;
        line-height: 20px;
    }
}

/* Extra small devices (max-width: 360px) */
@media (max-width: 360px) {
    header {
        padding: 15px;
    }

    .hero {
        padding: 20px 15px 50px 15px;
    }

    .hero-title {
        font-size: 22px;
    }

    .features,
    .about-section,
    .service-section,
    .faq-section,
    .testimonials-section,
    .team-section {
        padding-left: 15px;
        padding-right: 15px;
        grid-template-columns: 1fr;
    }

    .banner {
        margin: 40px 15px;
        margin-top: -60px;
        padding: 25px 15px;
    }

    .contact-section {
        padding: 0 15px 40px 15px;
    }

    footer {
        padding: 40px 15px;
    }
}
