.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
    top: -10px;
    overflow: hidden;
}


.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 628px;
}

.hero-image-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}


.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border: 1px solid #667085;
    background-color: transparent;
    border-radius: 100px;
    margin-bottom: 24px;
    color: #667085;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
}


/* Heading styling */
.hero-heading {
    font-size: 44px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -2%;
    color: #101828;
    margin-bottom: 24px;
}

span {
    color: #7548F2;
}

/* Description styling */
.hero-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #667085;
    margin-bottom: 40px;
    max-width: 515px;
    letter-spacing: 0%;
}

/* App buttons styling */
.app-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}


/* Responsive styles */
@media (max-width: 992px) {
    .hero-container {
        gap: 3rem;
    }

    .hero-heading {
        font-size: 36px;
        line-height: 48px;
    }

    .hero-description {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .trust-badge {
        margin-bottom: 20px;
    }

    .hero-heading {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 32px;
    }

    .app-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 1.5rem;

    }

    .hero-heading {
        font-size: 28px;
        line-height: 36px;
        text-align: left;
    }

    .hero-description {
        text-align: left;
    }

    .app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .app-button {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .trust-badge {
        font-size: 7px;
        padding: 4px 10px;
        justify-content: flex-start;
        margin-left: 0;
        margin-right: auto;
        width: 100%;

    }

    .trust-badge img {
        width: 59px;
        height: 13px;
    }

    .bg {
        display: none;
    }
}


.about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.about-image-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.about-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0%;
    color: #475467;
}

.title-icon {
    font-size: 24px;
    color: #7548F2;
}

.about-subheading {
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0%;
    color: #101828;
    margin-bottom: 32px;
    max-width: 628px;
}

.highlight-box {
    background-color: #F1EDFE;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: none;
}

.highlight-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0%;
    color: #101828;
    margin-bottom: 12px;
}

.about-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #667085;
    margin-bottom: 32px;
    max-width: 565px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #7548F2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more:hover {
    gap: 12px;
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 992px) {
    .about-section {
        gap: 40px;
    }

    .about-subheading {
        font-size: 26px;
        line-height: 34px;
    }

    .about-description {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-heading {
        justify-content: center;
    }

    .about-subheading,
    .about-description {
        margin-left: auto;
        margin-right: auto;
    }

    .learn-more {
        justify-content: center;
        margin: 0 auto;
    }
    
    #left{
        position: relative;
        right:120px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .about-subheading {
        font-size: 22px;
        line-height: 30px;
        text-align: left;
    }

    .about-heading {
        justify-content: left;
    }

    .highlight-title {
        text-align: left;
    }

    .about-description {
        font-size: 16px;
        line-height: 24px;
        text-align: left;
    }

    .learn-more {
        font-size: 18px;
        margin-right:auto;
    }

    .bg {
        display: none;
    }

}


.features-container {
    max-width: 1200px;
    width: 100%;
    margin-top: 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 44px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 20px;
    color: #667085;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-box {
    flex: 1;
    min-width: 300px;
    background: #F1EDFE;
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}


.feature-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0%;
    color: #475467;
}

.feature-subtitle {
    font-size: 27px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0%;
    color: #101828;
    margin-bottom: 30px;
}

.feature-list {
    list-style-type: none;
    margin-bottom: 30px;
}

.feature-list li {
    position: relative;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0%;
    color: #475467;
}

.feature-list li:before {
    content: "";
    position: absolute;
    left: -40px;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #475467;
    border-radius: 50%;
    display: flex;
    font-weight: bold;
    font-size: 14px;
}


.feature-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #8a63d2 0%, #5d3c9e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
    overflow: hidden;
    position: relative;
}



/* Responsive styles */
@media (max-width: 992px) {
    .feature-subtitle {
        font-size: 26px;
        line-height: 34px;
    }

    .feature-list li {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        flex-direction: column;
        gap: 30px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .section-header p {
        font-size: 18px;
    }

    .feature-box {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .feature-box {
        padding: 25px;
    }

    .feature-subtitle {
        font-size: 24px;
        line-height: 32px;
    }

    .feature-list li {
        font-size: 16px;
        line-height: 24px;
        
    }

    .feature-list li:before {
        top: 4px;
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    #textLeft{
        text-align: left !important;
        justify-items: left !important;
        justify-content: left !important;
        align-self: left;
        align-items: left;
        align-content: left;
    }

    #center{
        justify-items: center !important;
        justify-content: center !important;
        align-self: center !important;
        align-items: center !important;
        align-content: center !important;
    }



}