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

body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    background: #ffffff;
    color: #333;
}

.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: #ffffff;
    transition: all 0.3s ease;

    box-shadow: 0 5px 20px #EFEFEF;
}

.nav.scrolled {
    padding: 15px 50px;
}

.logo {

    font-size: 23px;
    font-weight: bold;
    color: #333;
    animation: fadeInDown 0.8s ease;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    list-style: none;
    animation: fadeInDown 0.8s ease 0.2s backwards;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #333;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}


.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.bg-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s infinite ease-in-out;
    opacity: 0;
}

.shape1 {
    width: 500px;
    height: 500px;
    background: transparent;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape2 {
    width: 400px;
    height: 400px;
    background: transparent;
    bottom: 20%;
    right: 10%;
    animation-delay: 5s;
}

.shape3 {
    width: 350px;
    height: 350px;
    background: transparent;
    top: 40%;
    right: 30%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, 50px) scale(1.1);
    }

    50% {
        transform: translate(-30px, 80px) scale(0.9);
    }

    75% {
        transform: translate(70px, -50px) scale(1.05);
    }
}

.hero-content {

    z-index: 10;
    padding: 20px;
    width: 100%;
}

.hero-wrapper {
    padding-top: 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.heroImage {
    width: 100%;
    max-width: 500px;
    height: 500px;
    border-radius: 30px;
    animation: fadeInDown 0.8s ease 0.2s backwards;
}

.hero-image {
    margin-top: 80px;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    /* height: auto; */
}

.hero h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #333;
    animation: fadeInUp 1s ease;
}

.heroText {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 85%;
    /* bottom: -10%; */
    transform: translateY(-50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.black-effect {
    position: absolute;
    margin-top: 80px;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 20%;
}

.heroText-heading {
    max-width: 90%;
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    margin: 0 auto 12px;
    color: white;
    line-height: 1.3;
}

.heroText-para {
    max-width: 85%;
    font-size: 20px;
    text-align: center;
    margin: 8px auto 15px;
    color: white;
    line-height: 1.5;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
    color: #666;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.cta-buttons-home {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s backwards;
    flex-wrap: wrap;
}

.btn {
    padding: 9px 28px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.btn-primary {
    background: #333;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.why-diff {
    display: flex;
    align-items: center;
}

.btn-nav {
    padding: 11px 22px;
    font-weight: normal;
    font-size: 14px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    animation: fadeInDown 0.8s ease 0.2s backwards;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #555;
    transition: left 0.3s ease;
}

.btn-primary span {
    position: relative;
    z-index: 1;
    font-size: 16px;
}

.nav-on-mobile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #333;
    color: white;
    /* color: wheat; */
}

.btn-secondary-cta {
    color: #333;
    background: transparent;
    border: 2px solid #333;
}

.btn-secondary span {
    font-size: 16px;
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.section {
    padding: 80px 50px;
}

.section-alt {
    background: #f9f9f9;
}

.section-gradient {
    background: #f5f5f5;
}

.section-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}


.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.secion-title-join {
    margin-bottom: 50px;
}

.why-heading {
    text-align: start;
}


.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-tag {
    display: inline-block;
    color: #f4a261;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    /* transform: translateY(-10px); */
    border-color: #ccc;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
}

.feature-icon.icon-blue {
    background-color: #e3f2fd;
    color: #1976d2;
}

.feature-icon.icon-green {
    background-color: #e8f5e9;
    color: #388e3c;
}

.feature-icon.icon-orange {
    background-color: #fff3e0;
    color: #f57c00;
}

.feature-icon.icon-purple {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.feature-icon.icon-red {
    background-color: #ffebee;
    color: #c62828;
}

.feature-icon.icon-teal {
    background-color: #e0f2f1;
    color: #00897b;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}


.feature-card p {
    color: #666;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid #e0e0e0;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-card.visible {
    opacity: 1;
    transform: scale(1);
}

.step-card:hover {
    transform: scale(1.05);
    border-color: #999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
    color: #ffffff;
}

.step-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

.why-choose-list {
    max-width: 800px;
    margin: 0 auto;
}

.why-item {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #333;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.why-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.why-item:hover {
    background: #f9f9f9;
    transform: translateX(10px);
}

.why-item-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.why-item-text {
    font-size: 18px;
    color: #333;
}

.stats {
    padding: 100px 50px;
    padding-top: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.stat-item.visible {
    opacity: 1;
    transform: scale(1);
}

.stat-number {
    font-size: 40px;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid #e0e0e0;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-card.visible {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card:hover {
    border-color: #999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 30px;
    color: #999;
    /* margin-bottom: 20px; */
    opacity: 0.3;
}

.testimonial-text {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

.testimonial-role {
    color: #999;
    font-size: 14px;
}

.cta-section {
    text-align: center;
    padding: 100px 50px;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: transparent;
    border-radius: 50%;
    filter: blur(100px);
    top: -200px;
    right: -200px;
    opacity: 0;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: #333;
}

.cta-description {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s backwards;
    flex-wrap: wrap;
}

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

.faq-item {
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.faq-toggle {
    font-size: 24px;
    transition: transform 0.3s ease;
    color: #333;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

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

.faq-answer-content {
    padding: 0 30px 25px 30px;
    color: #666;
    line-height: 1.8;
}

.footer {
    background: #0B2C3D;
    padding: 60px 50px 30px;
    border-top: 1px solid #555;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 500;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
    display: block;
}

.footer-section a:hover {
    color: #ffffff;
    padding-left: 5px;
    transition: all 0.3s ease;
}

.social-links i {
    color: #fff;
    font-size: 25px;

}

.social-links i:hover {
    color: #ffffff;
    transition: all 0.3s ease;
    transform: scale(1.2);
    cursor: pointer
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #555;
    color: #999;
}

.social-links {
    display: flex;
    gap: 15px;
    /* font-size: 25px; */
    margin-top: 15px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }

}

/* Tablets and smaller desktops (768px - 1024px) */
@media (max-width: 1024px) {
    .section {
        padding: 60px 30px;
    }

    .stats {
        padding: 60px 30px;
    }

    .btn-nav {
        padding: 8px 19px;
        font-size: 10px;
    }

    .cta-section {
        padding: 70px 30px;
    }

    .hamburger {
        display: none;
    }


    .section-title {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .section-subtitle {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .nav {
        padding: 15px 30px;
    }

    .nav.scrolled {
        padding: 12px 30px;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }

    .hero-wrapper {
        padding-top: 60px;
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        margin-top: 0px;
    }

    .hero h1 {
        font-size: 56px;
    }

    .hero p {
        font-size: 20px;
    }

    .heroText-heading {
        font-size: 42px;
    }

    .heroText-para {
        font-size: 18px;
    }

    .heroImage {
        max-width: 500px;
        height: 400px;
        margin-top: 30px;
    }

    .cta-buttons-home {
        justify-content: center;
    }

    .shape1 {
        width: 350px;
        height: 350px;
    }

    .shape2 {
        width: 300px;
        height: 300px;
    }

    .shape3 {
        width: 250px;
        height: 250px;
    }

    .footer {
        padding: 50px 40px 20px;
    }

    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .footer-bottom {
        padding-top: 25px;
    }

    .why-diff {
        display: block;
    }
    .black-effect {
        margin-top: 0px;
    }

}

/* Mobile devices (480px - 768px) */
@media (max-width: 768px) {
    .nav {
        padding: 15px 20px;
        flex-direction: row;
    }

    .logo {
        font-size: 22px;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #ffffff;
        backdrop-filter: blur(10px);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        gap: 0;
        list-style: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav.active .nav-links {
        max-height: 400px;
    }

    .nav-links li {
        padding: 15px 20px;
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-links a {
        display: block;
    }

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

    .hamburger span {
        width: 25px;
        height: 2.5px;
        background: #333;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .nav.active .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 10px);
    }

    .nav.active .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .nav.active .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(0.5px, -6px);
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }

    .hero-wrapper {
        flex-direction: column;
        padding-top: 40px;
        text-align: center;
    }

    .hero h1 {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .heroText {
        top: 85%;
        padding: 20px;
    }

    .heroText-heading {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .heroText-para {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .cta-buttons-home {
        flex-wrap: wrap;
        gap: 10px;
    }

    .heroImage {
        max-width: 100%;
        width: 100%;
        height: auto;
        max-height: 300px;
        margin-top: 20px;
    }

    .cta-buttons-home {
        justify-content: center;
        gap: 15px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 16px;
    }

    .section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card {
        padding: 30px 20px;
    }

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

    .feature-card h3 {
        font-size: 20px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .step-card {
        padding: 30px 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .step-title {
        font-size: 18px;
    }

    .why-choose-list {
        max-width: 100%;
    }

    .why-item {
        padding: 20px 15px;
        margin-bottom: 15px;
        gap: 12px;
    }

    .why-item-icon {
        font-size: 24px;
    }

    .why-item-text {
        font-size: 16px;
    }

    .stats {
        padding: 50px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 14px;
    }

    .testimonials {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .quote-icon {
        font-size: 36px;
    }

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

    .testimonial-author {
        font-size: 14px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-section::before {
        width: 250px;
        height: 250px;
        top: -125px;
        right: -125px;
    }

    .cta-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .cta-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-buttons {
        gap: 15px;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-item {
        margin-bottom: 15px;
        border-radius: 12px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-toggle {
        font-size: 20px;
    }

    .faq-answer-content {
        padding: 0 20px 18px 20px;
        font-size: 15px;
    }

    .shape1 {
        width: 250px;
        height: 250px;
    }

    .shape2 {
        width: 200px;
        height: 200px;
    }

    .shape3 {
        width: 180px;
        height: 180px;
    }

    .footer {
        padding: 40px 30px 10px;
    }

    .footer-content {
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .footer-bottom {
        padding-top: 20px;
    }
}

/* Small mobile devices (below 480px) */
@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }

    .nav {
        padding: 12px 15px;
    }

    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
    }

    .hero-wrapper {
        padding-top: 30px;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .heroText {
        top: 70%;
        padding: 15px;
    }

    .black-effect {
        opacity: 25%;
    }

    .heroText-heading {
        font-size: 26px;
        margin-bottom: 12px;
        max-width: 95%;
    }

    .heroText-para {
        font-size: 14px;
        margin-bottom: 5px;
        max-width: 95%;
    }


    .cta-buttons-home .btn {
        width: 100%;
        padding: 11px 20px;
        font-size: 14px;
    }

    .heroImage {
        max-height: 250px;
        margin-top: 15px;
    }

    .cta-buttons-home {
        flex-direction: column;
        gap: 0px;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
        text-align: center;
    }

    .btn span {
        display: block;
    }

    .section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .feature-icon {
        font-size: 36px;
    }

    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .step-card {
        padding: 20px 15px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .step-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .step-description {
        font-size: 14px;
    }

    .why-item {
        padding: 15px 12px;
        margin-bottom: 12px;
        gap: 10px;
    }

    .why-item-icon {
        font-size: 20px;
        min-width: 25px;
    }

    .why-item-text {
        font-size: 14px;
    }

    .stats {
        padding: 40px 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }

    .testimonial-card {
        padding: 20px 15px;
    }

    .quote-icon {
        font-size: 28px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .testimonial-author {
        font-size: 13px;
    }

    .testimonial-role {
        font-size: 12px;
    }

    .cta-section {
        padding: 50px 15px;
    }

    .cta-section::before {
        width: 200px;
        height: 200px;
        top: -100px;
        right: -100px;
    }

    .cta-title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .cta-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0px;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .faq-question {
        padding: 15px 15px;
    }

    .faq-question-text {
        font-size: 14px;
    }

    .faq-toggle {
        font-size: 18px;
    }

    .faq-answer-content {
        padding: 0 15px 15px 15px;
        font-size: 13px;
        line-height: 1.6;
    }

    .shape1,
    .shape2,
    .shape3 {
        filter: blur(60px);
    }

    .footer {
        padding: 30px 20px 5px;
    }

    .footer-content {
        gap: 20px;
        margin-bottom: 20px;
    }

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-bottom {
        padding-top: 18px;
        padding-bottom: 5px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .btn-nav {
        padding: 8px 19px;
        font-size: 10px;
    }

    .btn-nav span {
        font-size: 13px;
    }

    .black-effect {
        margin-top: 0px;
    }

    .why-item {
        font-size: 15px;
    }

    .footer-section a,
    p {
        font-size: 15px;
    }
}