.subtext {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.subtext2 {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.images-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 3px;
}

.images-container img {
    width: 80%;
    max-width: 500px;
}

.images-container img.xs-image {
    max-width: 100px !important;
    height: auto;
}

.images-container img.large-image {
    max-width: 325px !important;
    height: auto;
}

.image-container {
    flex-shrink: 0;
    margin-left: 20px;
}

.large-image {
    width: 325px;
    height: auto;
}

.medium-image {
    width: 200px;
    height: auto;
}

.small-image {
    width: 150px;
    height: auto;
}

.full-width-section {
    background-color: white;
    width: 100%;
    position: relative;
    left: 0;
    margin: 0;
    padding: 40px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-light {
    background: #E3F2FD;
    color: #0D47A1;
}

.section-dark {
    background: #1E3A8A;
    color: white;
}

.section-vision {
    background-color: #3a5a9b;
    color: white;
}

.section {
    padding: 40px 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.section-white {
    background-color: white;
    padding: 50px 0;
}

.title-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.text-content {
    flex: 1;
    max-width: 70%;
}

.image-stack-container {
    flex-shrink: 0;
    margin-left: 40px;
    text-align: center;
}

.stacked-logo {
    width: 120px;
    height: auto;
}

.stacked-xs-image {
    max-width: 60px;
    height: auto;
}

.rounded-image {
    border-radius: 15px;
}

.step-block {
    max-width: 160px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.process-flow {
    flex-wrap: wrap;
    align-items: stretch;
}

.process-icon {
    width: 100%;
    max-width: 120px;
    height: auto;
}

.step-label {
    font-size: 0.95rem;
    line-height: 1.3;
    color: #333;
    margin-top: 0.5rem;
}

.arrow {
    display: flex;
    justify-content: center;
    align-self: center;
    color: #0d47a1;
}

.arrow i {
    font-size: 1.4rem;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form-container button {
    width: 100%;
    font-size: 1.2rem;
}

.section-cta {
    background: #2563EB; /* Bright blue */
    color: white;
    text-align: center;
}

/* CTA Section */
.btn-gradient-dark {
    background: linear-gradient(135deg, #222, #444);
        color: white;
    padding: 12px 24px;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.btn-gradient-dark:hover {
    background: linear-gradient(135deg, #111, #333);
}

@media (max-width: 992px) {
    .image-stack-container {
        margin-left: 0;
        margin-top: 20px;
    }

    .stacked-logo {
        width: 100px;
    }

    .stacked-xs-image {
        max-width: 50px;
    }

    .text-content {
        max-width: 100%;
    }

    .title-container {
        flex-direction: column;
        text-align: center;
    }

    .medium-image {
        width: 150px;
        height: auto;
    }

    .small-image {
        width: 125px;
        height: auto;
    }

    .image-container {
        margin-top: 15px;
        margin-left: 0;
    }

}

@media (max-width: 767px) {
    .arrow {
        display: none !important;
    }

    .step-label {
        font-size: 0.9rem;
    }

    .process-icon {
        max-width: 80px;
    }
}
