/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Background Elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}

.line-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.line-bg-1 {
    background: repeating-linear-gradient(0deg, transparent 0px, transparent 80px, #4dc3b4 80px, #4dc3b4 83px);
}

.line-bg-2 {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent 80px, rgba(77, 195, 180, 0.5) 80px, rgba(77, 195, 180, 0.5) 83px);
}

.line-bg-3 {
    background: repeating-linear-gradient(45deg, transparent 0px, transparent 100px, rgba(145, 158, 171, 0.24) 100px, rgba(145, 158, 171, 0.24) 103px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0px 4px 100px 0px rgba(127, 207, 197, 0.5);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 26px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(52, 59, 155, 1) 0%, rgba(18, 20, 53, 1) 100%);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    padding: 175px 15px 0;
    min-height: 80vh;
}

.hero-left {
    flex: 1;
    max-width: 684px;
}

.mission-label {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1em;
    letter-spacing: 2.083333333333333%;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 50px;
}

.hero-main-title {
    margin-bottom: 40px;
}

.title-line {
    display: block;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 75px;
    line-height: 1.1333333333333333em;
    color: #4dc3b4;
}

.title-line:nth-child(2) {
    line-height: 1.0666666666666667em;
}

.title-line:nth-child(3) {
    line-height: 1.0666666666666667em;
}

.hero-description {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 3.2em;
    text-transform: uppercase;
    color: #d8dee8;
    margin-bottom: 50px;
}

.hero-cta-btn {
    background: transparent;
    border: 1px solid #ffffff;
    padding: 11px 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5em;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta-btn:hover {
    background: #ffffff;
    color: #000000;
}

.hero-right {
    flex: 0 0 auto;
    margin-left: 50px;
}

.hero-image-container {
    position: relative;
    width: 385.75px;
    height: 502.25px;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(77, 195, 180, 0.5) 0%, rgba(53, 62, 157, 1) 42%, rgba(26, 36, 84, 1) 92%);
    opacity: 0.8;
}

/* Solutions Section */
.solutions-section {
    position: relative;
    z-index: 3;
    background: #011437;
    padding: 100px 0;
    margin-top: -200px;
}

.solutions-background {
    position: absolute;
    top: 0;
    left: 144px;
    width: 1440px;
    height: 100%;
    background: #011437;
}

.solutions-logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.logo-circle {
    width: 450px;
    height: 450px;
    background: #011437;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0px 10px 41px 27px rgba(1, 20, 55, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    width: 352px;
    height: 352px;
    background: #ffffff;
    border-radius: 50%;
    position: relative;
}

.solutions-buttons {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    gap: 100px;
}

.solutions-outline-buttons,
.solutions-filled-buttons {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
}

.solution-btn {
    padding: 11px 16px;
    border-radius: 100px;
    font-family: "Public Sans", sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.7333333333333334em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.solution-btn.outline {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.solution-btn.outline:hover {
    background: #ffffff;
    color: #000000;
}

.solution-btn.filled {
    background: linear-gradient(90deg, rgba(180, 238, 236, 1) 0%, rgba(253, 252, 245, 1) 100%);
    border: none;
    color: #000000;
}

.solution-btn.filled:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Vision Section */
.vision-section {
    padding: 96px 80px;
    background: #ffffff;
}

.vision-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 96px;
    max-width: 1240px;
    margin: 0 auto;
}

.vision-text {
    flex: 0 0 501px;
}

.section-label {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5em;
    color: #475467;
    margin-bottom: 24px;
}

.section-label.center {
    text-align: center;
    font-size: 24px;
    line-height: 1.1em;
}

.section-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.375em;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 32px;
}

.section-description {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 1.4em;
    color: #475467;
}

.vision-images {
    position: relative;
    width: 601px;
    height: 437px;
}

.vision-img-1 {
    position: absolute;
    top: 9px;
    right: 0;
    width: 270px;
    height: 360px;
    border: 5px solid #ffffff;
    object-fit: cover;
}

.vision-img-2 {
    position: absolute;
    bottom: 0;
    left: 33px;
    width: 347px;
    height: 262px;
    border: 4px solid #ffffff;
    object-fit: cover;
}

/* Business Section */
.business-section {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px 120px 80px 120px;
    background: #ffffff;
}

.business-images {
    position: relative;
    width: 747.77px;
    height: 420px;
    flex-shrink: 0;
}

.business-bg-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-bg-2 {
    position: absolute;
    top: 146.25px;
    left: 238.75px;
    width: 473.59px;
    height: 248.01px;
    object-fit: cover;
}

.business-logo-3d {
    position: absolute;
    top: 197.5px;
    left: 35px;
    width: 87.5px;
    height: 84.38px;
    background: #ffffff;
}

.business-main-title {
    position: absolute;
    bottom: 48px;
    left: 35px;
    width: 214px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 35px;
    line-height: 1.2857142857142858em;
    text-transform: capitalize;
    color: #ffffff;
}

.business-content {
    flex: 1;
    padding: 32px 0;
}

.business-info {
    background: #ffffff;
    padding: 25px 0;
    width: 373px;
}

.business-brand {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    width: 287.87px;
    height: 60.66px;
}

.brand-logo {
    width: 60.67px;
    height: 60.66px;
    margin-right: 14.43px;
}

.brand-name {
    font-family: "ADLaM Display", sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.3046875em;
    color: #000000;
}

.business-description {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4em;
    color: #1c252e;
    margin-bottom: 25px;
    width: 368px;
}

.business-cta-btn {
    background: #343b9b;
    border: none;
    border-radius: 8px;
    padding: 16px 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.business-cta-btn:hover {
    background: #2a3185;
    transform: translateY(-1px);
}

/* Mission Section */
.mission-section {
    position: relative;
    padding: 80px;
    background: #ffffff url("assets/images/impact-screenshot-4d3a2f.png") center/cover no-repeat;
    box-shadow: 0px 4px 10px 0px rgba(0, 64, 184, 1);
    margin: 80px 126px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
    border-radius: inherit;
}

.mission-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    background: rgb(250, 250, 250);
    gap: 160px;
    padding: 0 16px;
}

.mission-text {
    flex: 0 0 616px;
}

.mission-title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.25em;
    letter-spacing: -2%;
    text-transform: uppercase;
    color: #101828;
    margin-top: 33px;
}

.mission-description {
    flex: 0 0 416px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 32px;
}

.mission-description p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4em;
    color: #475467;
}

/* Impact Section */
.impact-section {
    padding: 80px 120px;
    background: #ffffff;
}

.impact-content {
    text-align: center;
    margin-bottom: 80px;
}

.impact-description {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 0.8em;
    text-align: center;
    color: #21272a;
    max-width: 1194px;
    margin: 12px auto 0;
}

.impact-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-feature {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.impact-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.impact-full-width {
    grid-column: 1 / -1;
    height: 400px;
}

.impact-feature-content {
    position: absolute;
    bottom: 28px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
}

.impact-feature-content h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5em;
    color: #000000;
    margin-bottom: 16px;
}

.impact-feature-content p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #000000;
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 80px;
    background: linear-gradient(90deg, rgba(52, 59, 155, 1) 0%, rgba(58, 125, 201, 1) 53%, rgba(77, 195, 180, 1) 100%);
}

.contact-content {
    display: flex;
    gap: 96px;
    max-width: 1192px;
    margin: 0 auto;
    padding: 0 64px;
}

.contact-info {
    flex: 0 0 445px;
}

.contact-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.2em;
    letter-spacing: -2%;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-label {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    letter-spacing: 10%;
    color: #f2f5f9;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.2em;
    color: #ffffff;
}

.contact-form {
    flex: 1;
    max-width: 651px;
}

.form-row {
    display: flex;
    gap: 22px;
    margin-bottom: 47.75px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4.5px;
    margin-bottom: 47.5px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group label {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4285714285714286em;
    color: #ffffff;
}

.form-input,
.form-textarea {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 15px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.form-input {
    height: 50px;
}

.form-textarea {
    height: 131px;
    resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #4dc3b4;
    background: rgba(255, 255, 255, 0.15);
}

.form-submit-btn {
    background: #343b9b;
    border: none;
    border-radius: 8px;
    padding: 16px 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 147px;
    margin-top: 15px;
}

.form-submit-btn:hover {
    background: #2a3185;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: #ffffff;
    border-top: 1px solid rgba(145, 158, 171, 0.2);
    padding: 80px 0 40px;
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 110px 0 144px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 80px;
}

/* Left side - Company Information */
.footer-left {
    flex: 0 0 365px;
    text-align: left;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    width: 250px;
    height: 70px;
}

.footer-description {
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5714285714285714em;
    color: #000000;
    text-align: left;
}

.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.social-icon {
    width: 24px;
    height: 24px;
}

/* Right side - Legal and Contact */
.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    text-align: left;
}

.footer-section {
    min-width: 172px;
}

.footer-section h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.5em;
    text-transform: uppercase;
    color: #1c252e;
    margin-bottom: 24px;
    text-align: left;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-section ul li a {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5714285714285714em;
    color: #1c252e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4dc3b4;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 299px;
    padding: 0 24px 24px;
}

.footer-contact .contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 24px;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.footer-contact .contact-item p {
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5714285714285714em;
    color: #1c252e;
    margin: 0;
    text-align: left;
}

.contact-subtitle {
    color: #637381 !important;
    margin-bottom: 1px !important;
}

.footer-bottom {
    text-align: left;
    padding-top: 40px;
    border-top: 1px solid rgba(145, 158, 171, 0.2);
}

.footer-bottom p {
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5714285714285714em;
    color: #1c252e;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container,
    .header-container,
    .hero-content,
    .vision-section,
    .business-section,
    .mission-section,
    .impact-section,
    .contact-section,
    .footer-content {
        padding-left: 40px;
        padding-right: 40px;
        max-width: 100%;
        width: 100%;
    }

    .hero-content {
        padding-top: 120px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-main-title {
        font-size: 55px;
    }

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

    .hero-right {
        margin-left: 0;
    }

    .vision-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        max-height: 60rem;
    }

    .vision-text {
        max-width: 100%;
        order: 2;
    }

    .vision-images {
        order: 1;
        width: 100%;
        height: auto;
        min-height: auto;
        margin: 0 auto;
        padding-top: 40px;
    }

    .vision-img-1,
    .vision-img-2 {
        position: static;
        width: 80%;
        height: auto;
        margin: 0 auto 20px;
        display: block;
    }

    .vision-img-2 {
        width: 70%;
    }

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

    .section-description {
        font-size: 18px;
    }

    .business-section {
        flex-direction: column;
        text-align: center;
        padding: 40px;
        gap: 20px;
    }

    .business-images {
        width: 100%;
        height: auto;
        min-height: 250px;
        order: 1;
        position: relative;
        margin-bottom: 20px;
    }

    .business-bg-1,
    .business-bg-2 {
        position: static;
        width: 100%;
        height: auto;
        display: block;
    }

    .business-main-title {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        width: auto;
        max-width: calc(100% - 40px);
        font-size: 28px;
        color: #ffffff;
        background: rgba(0, 0, 0, 0.5);
        padding: 10px;
        border-radius: 5px;
        text-align: left;
        margin-top: 0;
    }

    .business-content {
        order: 2;
        width: 100%;
        padding-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .business-info {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .business-brand {
        justify-content: center;
        width: auto;
        margin-bottom: 15px;
    }

    .business-description {
        width: 100%;
        max-width: 100%;
    }

    .mission-section {
        /* Adjusted for smaller screens */
        margin: 40px auto;
        max-width: calc(100% - 80px);
        background-size: cover;
        background-position: center;
        padding: 40px;
    }

    .mission-content {
        flex-direction: column;
        gap: 10px;
        padding: 0;
        text-align: center;
    }

    .mission-text {
        max-width: 100%;
        height: auto;
        flex: 0 0 216px;
    }

    .mission-description {
        max-width: 100%;
        height: auto;
        flex: 0 0 300px;
    }

    .mission-title {
        font-size: 38px;
        margin-top: 0;
    }

    .mission-description p {
        font-size: 18px;
    }

    .impact-section {
        padding: 80px 40px;
    }

    .impact-features {
        grid-template-columns: 1fr;
    }

    .impact-feature-content {
        position: static;
        padding: 15px;
        background: none;
    }

    .impact-img {
        height: 200px;
    }

    .impact-full-width {
        grid-column: auto;
        height: auto;
    }

    .contact-section {
        padding: 40px;
    }

    .contact-content {
        flex-direction: column;
        gap: 40px;
        padding: 0;
        text-align: center;
    }

    .contact-info {
        max-width: 100%;
        flex: 0 0 245px;
    }

    .contact-title {
        font-size: 40px;
    }

    .contact-items {
        align-items: center;
    }

    .contact-item {
        font-size: 24px;
    }

    .contact-form {
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        min-width: 100%;
        margin-bottom: 20px;
    }

    .form-submit-btn {
        width: 100%;
    }

    .footer-content {
        padding: 0 40px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-left,
    .footer-right {
        max-width: 100%;
        width: 100%;
        text-align: center;
        justify-content: center;
        flex-direction: column;
    }

    .footer-brand {
        align-items: center;
    }

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

    .footer-social {
        justify-content: center;
    }

    .footer-section {
        min-width: auto;
        flex-basis: auto;
    }

    .footer-section h4 {
        text-align: left;
    }

    .footer-section ul {
        align-items: start;
    }

    .footer-contact {
        width: 100%;
        padding: 0;
    }

    .footer-contact .contact-item {
        justify-content: start;
    }

    .footer-contact .contact-item p {
        text-align: start;
    }

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

/* Medium/Small Desktop Screens */
@media (max-width: 1440px) {
    .container,
    .header-container,
    .hero-content,
    .solutions-buttons,
    .footer-content {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-main-title {
        font-size: 60px;
    }

    .hero-description {
        font-size: 22px;
    }

    .solutions-buttons {
        gap: 50px;
    }

    .solutions-outline-buttons,
    .solutions-filled-buttons {
        gap: 12px;
    }

    .business-section {
        padding: 80px 40px;
    }

    .impact-section {
        padding: 80px 40px;
    }

    .contact-section {
        padding: 80px 40px;
        flex-direction: column;
        gap: 40px;
    }

    .contact-content {
        padding: 0;
    }

    .contact-info,
    .contact-form {
        max-width: 100%;
    }

    .contact-info {
        flex: auto;
    }

    .footer-content {
        padding: 0 40px;
    }

    /* Privacy Consent Checkbox Styling */
    .checkbox-label {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-family: "Poppins", sans-serif;
        font-size: 12px;
        color: #ffffff;
        cursor: pointer;
        line-height: 1.4;
    }

    .privacy-checkbox {
        margin: 0;
        margin-top: 2px;
    }

    .checkbox-label a {
        color: #4dc3b4;
        text-decoration: underline;
    }

    .checkbox-label a:hover {
        color: #ffffff;
    }

    /* Enhanced Form Validation Styles - Add to your existing styles.css */

/* Required field indicator */
.form-group label.required::after {
    content: ' *';
    color: #ff6b6b;
}

/* Validation States */
.form-input.error,
.form-textarea.error {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.form-input.valid,
.form-textarea.valid {
    border-color: #4dc3b4;
    background: rgba(77, 195, 180, 0.1);
}

/* Error Messages */
.error-message {
    color: #ff6b6b;
    font-size: 12px;
    font-family: "Poppins", sans-serif;
    margin-top: 4px;
    display: none;
    line-height: 1.4;
}

/* Success and Error Summary Messages */
.success-message {
    background: rgba(77, 195, 180, 0.2);
    border: 1px solid #4dc3b4;
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    font-family: "Poppins", sans-serif;
}

.error-summary {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid #ff6b6b;
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    font-family: "Poppins", sans-serif;
}

/* Disabled Submit Button */
.form-submit-btn:disabled {
    background: #6b7280;
    cursor: not-allowed;
    transform: none;
}

.form-submit-btn:hover:not(:disabled) {
    background: #2a3185;
    transform: translateY(-1px);
}

/* Math Challenge Styling */
.math-challenge {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid rgba(77, 195, 180, 0.3);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.math-challenge:hover {
    border-color: rgba(77, 195, 180, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.math-challenge label {
    color: #f2f5f9;
    font-size: 16px;
    font-weight: 500;
}

#mathQuestion {
    font-weight: 700;
    color: #4dc3b4;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(77, 195, 180, 0.3);
}

.math-challenge .form-input {
    margin-top: 10px;
    max-width: 120px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .math-challenge {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .math-challenge label {
        font-size: 14px;
    }
    
    #mathQuestion {
        font-size: 16px;
    }
    
    .success-message,
    .error-summary {
        padding: 12px;
        font-size: 14px;
    }
}
}
