
    /* Common styles */
    .row {
        display: flex;
        width: 100%;
        margin: 0;
        padding: 0;
        flex-wrap: wrap;
    }

    .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: clamp(20px, 5vw, 40px);
        display: flex;
        flex-direction: column;
    }

    .two-column-section {
        display: flex;
        flex-wrap: wrap;
        background-color: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        margin: clamp(20px, 5vw, 40px) clamp(10px, 2.5vw, 25px);
    }

    .left-column {
        background-color: white;
    }

    .right-column {
        background-color: #fff;
        justify-content: center;
        align-items: center;
    }

    .section-badge {
        display: inline-flex;
        align-items: center;
        background: linear-gradient(135deg, #184073, #49bb57);
        color: white;
        padding: clamp(6px, 1.5vw, 8px) clamp(12px, 3vw, 16px);
        border-radius: 30px;
        font-size: clamp(0.7rem, 2vw, 0.8rem);
        font-weight: 600;
        margin-bottom: clamp(10px, 2.5vw, 15px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        max-width: fit-content;
    }

    .section-badge::before {
        content: '';
        display: inline-block;
        width: 8px;
        height: 8px;
        background-color: #0caf48ff;
        border-radius: 50%;
        margin-right: 8px;
    }

    .section-title {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
        color: #2c3e50;
        margin-bottom: clamp(10px, 2.5vw, 15px);
        font-weight: 700;
    }

    .section-subtitles {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        color: #5d6d7e;
        margin-bottom: clamp(20px, 5vw, 30px);
        font-weight: 400;
    }

    .about-description p {
        font-size: clamp(0.9rem, 2vw, 1rem);
        color: #5d6d7e;
        margin-bottom: clamp(15px, 3vw, 20px);
        line-height: 1.6;
    }

    .issue-list {
        list-style: none;
        padding: 0;
        margin: clamp(15px, 3vw, 20px) 0;
    }

    .issue-list li {
        padding: clamp(2px, -2vw, 8px) 0;
        margin-bottom: clamp(8px, 2vw, 10px);
        transition: transform 0.3s ease;
        display: flex;
        align-items: center;
    }

    /* Touch-friendly hover effects */
    @media (hover: hover) {
        .issue-list li:hover {
            transform: translateX(5px);
        }
    }

    .issue-list li i {
        color: #3498db;
        margin-right: clamp(10px, 2.5vw, 15px);
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }

    .reasons-section, .solution-section {
        margin-bottom: clamp(20px, 5vw, 30px);
    }

    .reasons-section h3, .solution-section h3 {
        font-size: clamp(1.1rem, 3vw, 1.3rem);
        color: #2c3e50;
        margin-bottom: clamp(10px, 2.5vw, 15px);
        font-weight: 600;
    }

    .reasons-section p, .solution-section p {
        padding: clamp(2px, -2vw, 8px) 0;
        margin-bottom: clamp(8px, 2vw, 10px);
        transition: transform 0.3s ease;
        display: flex;
        align-items: center;
    }

    /* Touch-friendly hover effects */
    @media (hover: hover) {
        .reasons-section p:hover, .solution-section p:hover {
            transform: translateX(5px);
        }
    }

    .reasons-section p i, .solution-section p i {
        margin-right: clamp(10px, 2.5vw, 15px);
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }

    .reasons-section p i {
        color: #e74c3c;
    }

    .solution-section p i {
        color: #27ae60;
    }

    .image-container {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        min-height: 250px;
    }

    .image-container img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
        transition: transform 0.5s ease;
    }

    /* Touch-friendly hover effects */
    @media (hover: hover) {
        .image-container img:hover {
            transform: scale(1.03);
        }
    }

    .buttons {
        display: flex;
        gap: clamp(10px, 2.5vw, 15px);
        margin-top: clamp(20px, 5vw, 30px);
        flex-wrap: wrap;
    }

    .btn {
        padding: clamp(10px, 2.5vw, 12px) clamp(15px, 3.5vw, 25px);
        border-radius: 5px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        font-size: clamp(0.9rem, 2vw, 1rem);
        flex: 1;
        min-width: 150px;
        text-align: center;
    }

    .btn-primary {
        background-color: #02253dff;
        color: white;
        border: none;
    }

    /* Touch-friendly hover effects */
    @media (hover: hover) {
        .btn-primary:hover {
            background-color: #032237ff;
            transform: translateY(-2px);
        }
    }

    .btn-secondary {
        background-color: transparent;
        color: #04253aff;
        border: 2px solid #041b2aff;
    }

    /* Touch-friendly hover effects */
    @media (hover: hover) {
        .btn-secondary:hover {
            background-color: #072f75ff;
            color: white;
            transform: translateY(-2px);
        }
    }

    .scroll-reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s ease-out;
    }

    .scroll-reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Medium devices (tablets, 576px and up) */
    @media (min-width: 576px) {
        .col-6 {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }

    /* Large devices (desktops, 768px and up) */
    @media (min-width: 768px) {
        .col-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }
        
        .two-column-section {
            flex-wrap: nowrap;
        }
    }

    /* Extra large devices (large desktops, 992px and up) */
    @media (min-width: 992px) {
        .buttons {
            flex-wrap: nowrap;
        }
        
        .btn {
            flex: 0 1 auto;
        }
    }

    /* Ultra wide devices (1200px and up) */
    @media (min-width: 1200px) {
        .two-column-section {
            max-width: 1370px;
            margin-left: auto;
            margin-right: auto;
        }
    }

    /* Small devices (landscape phones, 576px and down) */
    @media (max-width: 575.98px) {
        .image-container {
            min-height: 200px;
        }
    }

    /* Extra small devices (portrait phones, 400px and down) */
    @media (max-width: 400px) {
        .btn {
            min-width: 100%;
        }
    }
    




/* --- General Styles & Variables --- */
:root {
    --primary-color: #005A9C;
    --secondary-color: #004275;
    --accent-color: #FFA500;
    --light-bg: #f4f7f6;
    --white: #ffffff;
    --text-color: #333333;
    --light-text: #666666;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --connector-color: #005A9C;
}



.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-top: 10px;
}

/* --- Horizontal Zig-Zag Container --- */
.zigzag-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px; /* Space between rows */
}

.zigzag-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* This class reverses the order for the zig-zag effect */
.zigzag-row.row-reverse {
    flex-direction: row-reverse;
}

/* --- Individual Step --- */
.step {
    width: 45%;
    position: relative;
}

.step-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* --- Connectors (the lines between steps) --- */
.step::after {
    content: '';
    position: absolute;
    background-color: var(--connector-color);
    z-index: 1;
}

/* Connector from Step 1 to Step 2 (Right) */
.step-connector-right::after {
    width: 10%;
    height: 4px;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
}

/* Connector from Step 2 to Step 3 (Down) */
.step-connector-down::after {
    width: 4px;
    height: 50px;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
}

/* Connector from Step 3 to Step 4 (Left) */
.step-connector-left::after {
    width: 10%;
    height: 4px;
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
}

/* --- Step Number --- */
.step-number {
    position: absolute;
    top: -22px;
    left: 30px;
    background-color: #4caf50;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(52, 95, 236, 0.82);
}

.step h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.4rem;
}

.step p {
    margin: 0;
    color: var(--light-text);
}


/* --- Responsive Design for Mobile --- */
@media (max-width: 768px) {
    /* body {
        padding: 20px 15px;
    } */

    .page-header h1 {
        font-size: 2rem;
    }
    
    .zigzag-container {
        gap: 30px;
    }

    /* Stack rows vertically */
    .zigzag-row, .zigzag-row.row-reverse {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    /* Make each step take full width */
    .step {
        width: 100%;
    }

    /* Hide all connectors on mobile */
    .step::after {
        display: none;
    }

    .step-content {
        padding: 20px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        left: 20px;
    }
    
    .step h3 {
        font-size: 1.2rem;
    }
}
.icon-circle {
    width: 70px;
    height: 70px;
      background: linear-gradient(145deg, #08b7b9, #084a8a); /* 3D gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3), -5px -5px 15px rgba(255,255,255,0.2); /* 3D shadow */
    margin: 0 auto 10px auto;
    transition: transform 0.3s;
}

.icon-circle i {
    font-size: 30px;
    color: white;
}

.icon-circle:hover {
    transform: translateY(-5px) scale(1.1); /* subtle hover effect */
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .horizontal-points {
        flex-direction: column;
        align-items: center;
    }

    .horizontal-points > div:nth-child(2n) svg,
    .horizontal-points > div:nth-child(2n+1) svg {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}
.icon-circles {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #0b6cb9, #084a8a); /* 3D gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3), -5px -5px 15px rgba(255,255,255,0.2); /* 3D shadow */
    margin: 0 auto 10px auto;
    transition: transform 0.3s;
}

.icon-circles i {
    font-size: 30px;
    color: white;
}

.icon-circles:hover {
    transform: translateY(-5px) scale(1.1); /* subtle hover effect */
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .horizontal-points {
        flex-direction: column;
        align-items: center;
    }

    .horizontal-points > div:nth-child(2n) svg,
    .horizontal-points > div:nth-child(2n+1) svg {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}