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

:root {
    --obx-mid-blue: #0084A9;
    --obx-light-blue: #4FAEC9;
    --obx-red: #E71939;
    --text-dark: #1a1a1a;
    --text-light: #A3A9AC;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Open Sans Light', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}


.hero {
    background: linear-gradient(135deg, #006c8dc0 0%, #0058af7a 100%), url("../assets/cc5.jpg");
}



/* Impact Sections */
.impact-section {
    padding: 100px 60px;
    background: var(--white);
}

.impact-section.alt-bg {
    background: var(--bg-light);
}

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

.impact-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: start;
}

.impact-content.reverse {
    grid-template-columns: 1fr 500px;
}

.impact-content.reverse .impact-text {
    order: 1;
}

.impact-content.reverse .impact-image {
    order: 2;
}

.impact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: var(--bg-light);
    border: 1px solid #e0e0e0;
    position: sticky;
    top: 100px;
}

.alt-bg .impact-icon {
    background: var(--white);
}

.impact-icon img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
}

.impact-image {
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

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

.impact-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.impact-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--obx-mid-blue);
    margin-bottom: 32px;
    line-height: 1.3;
}

.impact-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 300;
}

.impact-text p.emphasis {
    font-style: italic;
    font-weight: 600;
    color: var(--obx-mid-blue);
    font-size: 19px;
    padding: 16px 0;
}

.inline-link {
    color: var(--obx-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: var(--obx-mid-blue);
    text-decoration: underline;
}

.impact-cta {
    display: inline-block;
    margin-top: 16px;
    padding: 16px 40px;
    background: var(--obx-red);
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.impact-cta:hover {
    background: #c41531;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 25, 57, 0.3);
}

/* CTA Banner */
.cta-banner {
    padding: 100px 60px;
    background: linear-gradient(135deg, var(--obx-mid-blue) 0%, var(--obx-light-blue) 100%);
    text-align: center;
}

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

.cta-banner h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-banner p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 18px 48px;
    background: var(--white);
    color: var(--obx-mid-blue);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--obx-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}