body {
    font-family: "Tajawal", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #1d1d1d;
}

.header {
    background-color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #eee;
    gap: 15px;
}

.header img {
    max-height: 60px;
}

.header h1 {
    font-size: 1.8rem;
    color: #002c5f;
    margin: 0;
}

.section {
    display: flex;
    max-width: 1200px;
    margin: 150px auto;
    border-radius: 25px;
    padding: 40px 20px;
    background: white;
    flex-direction: column;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    background: white;
}

.images-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 30px;
}

.images-column img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-column {
    flex: 2;
}

.title-area {
    text-align: right;
    margin-bottom: 30px;
}

.title-area h2 {
    color: #002c5f;
    font-size: 1.8rem;
}

.title-area h3 {
    color: #00c569;
    font-size: 1.3rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.card {
    background-color: #f2f5f8;
    border-radius: 12px;
    padding: 25px 20px;
    border-right: 6px solid #00c569;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card.blue {
    border-right-color: #001e62;
}

.card.green {
    border-right-color: #00c569;
}

.card.darkgreen {
    border-right-color: #008f3f;
}

.card .icon-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.success-title {
    font-size: 18px;
    font-weight: bold;
    color: #002c5f;
}

.card .icon-heading img {
    width: 50px;
    height: 50px;
}

.card .icon-heading h4 {
    font-size: 1.1rem;
    color: #002c5f;
    margin: 0;
}

.card ul {
    list-style: none;
    padding: 0px;
    margin: 0;
}

.card ul li {
    position: relative;
    margin-bottom: 12px;
    padding-right: 20px;
}

.card ul li::before {
    content: "\2022";
    position: absolute;
    right: 0;
    color: #00c569;
    font-weight: bold;
}

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

    .images-column {
        padding-left: 0;
    }
}

.report-section {
    background-color: #f2f5f8;
    border-radius: 12px;
    padding: 25px 20px;
    margin-top: 30px;
    border-right: 6px solid #002c5f;
}

.report-section h2 {
    color: #002c5f;
    font-size: 1.5rem;
    text-align: right;
}

.report-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.report-section ul li {
    position: relative;
    margin-bottom: 10px;
    padding-right: 20px;
    color: #1d1d1d;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: right;
}

.report-section ul li::before {
    content: "\2022";
    /* Bullet point */
    position: absolute;
    right: 0;
    color: #00c569;
    /* Green color for bullet */
    font-weight: bold;
}

.report-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.report-icon svg {
    width: 40px;
    height: 40px;
}
/* Base Styles - V1 */
.section-v1 {
    max-width: 1200px;
    margin: 80px auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 44, 95, 0.1);
    position: relative;
}

/* Header Style */
.section-header-v1 {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-header-v1 img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.section-header-v1 h1 {
    margin: 0;
    font-size: 1.8rem;
    flex-grow: 1;
    
    color:#002c5f;
}

/* Container Layout */
.container-v1 {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    padding: 30px;
}

/* Images Column */
.images-column-v1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    align-content: start;
}

.images-column-v1 img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.images-column-v1 img:hover {
    transform: scale(1.03);
}

.images-column-v1 img:first-child {
    grid-column: span 2;
}

/* Content Column */
.content-column-v1 {
    padding: 15px;
}

.title-area-v1 {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #00c569;
}

.title-area-v1 h2 {
    color: #002c5f;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.title-area-v1 h3 {
    color: #00c569;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}

/* Card Grid */
.grid-v1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.card-v1 {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 44, 95, 0.1);
    border-top: 4px solid #002c5f;
    transition: all 0.3s ease;
}

.card-v1:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 44, 95, 0.15);
}

.card-v1.blue {
    border-top-color: #002c5f;
}

.card-v1.green {
    border-top-color: #00c569;
}

.card-v1.darkgreen {
    border-top-color: #006341;
}

.card-v1 .icon-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.card-v1 .icon-heading img {
    width: 40px;
    height: 40px;
}

.success-title-v1 {
    font-size: 1rem;
    color: #002c5f;
    line-height: 1.5;
    margin: 0;
}

/* Report Section */
.report-section-v1 {
    background: #f0f7ff;
    border-radius: 10px;
    padding: 25px;
    margin: 0 30px 30px;
    border-left: 4px solid #002c5f;
    
    width: 80%;
}

.report-header-v1 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.report-header-v1 svg {
    width: 30px;
    height: 30px;
}

.report-header-v1 h2 {
    color: #002c5f;
    font-size: 1.4rem;
    margin: 0;
}

.report-list-v1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.report-list-v1 li {
    position: relative;
    padding-right: 25px;
    margin-bottom: 12px;
    color: #002c5f;
    line-height: 1.6;
    font-size: 1rem;
}

.report-list-v1 li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: #00c569;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Goal Section */
.goal-section-v1 {
    background: #e6f3ff;
    padding: 25px 30px;
    border-top: 1px solid #d0e5ff;
}

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

.goal-header-v1 svg {
    width: 30px;
    height: 30px;
}

.goal-header-v1 h2 {
    color: #002c5f;
    font-size: 1.4rem;
    margin: 0;
}

.goal-content-v1 {
    color: #002c5f;
    line-height: 1.7;
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 900px) {
    .container-v1 {
        grid-template-columns: 1fr;
    }
    
    .images-column-v1 {
        order: 2;
    }
}

@media (max-width: 600px) {
    .grid-v1 {
        grid-template-columns: 1fr;
    }
    
    .section-header-v1 {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .report-section-v1, .goal-section-v1 {
        margin-left: 15px;
        margin-right: 15px;
    }
}
/* New Base Styles */
.section-v2 {
    max-width: 1200px;
    margin: 100px auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* New Header Style */
.section-header-v2 {
    padding: 30px;
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-header-v2 img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.section-header-v2 h1 {
    margin: 0;
    font-size: 1.8rem;
    flex-grow: 1;
    color: #6e3fc6;
}

/* New Container Layout */
.container-v2 {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    padding: 0 30px;
    align-items: center;
}

/* New Images Column */
.images-column-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    align-content: start;
}

.images-column-v2 img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.images-column-v2 img:hover {
    transform: scale(1.03);
}

.images-column-v2 img:first-child {
    grid-column: span 2;
}

/* New Content Column */
.content-column-v2 {
    padding: 15px;
}

.title-area-v2 {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #00c569;
}

.title-area-v2 h2 {
    color: #002c5f;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.title-area-v2 h3 {
    color: #6e3fc6;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    padding-bottom: 10px;
}

/* New Card Grid */
.grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.card-v2 {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(110, 63, 198, 0.1);
    border-top: 4px solid #6e3fc6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-v2.blue {
    border-top-color: #002c5f;
}

.card-v2.green,
.card-v2.darkgreen {
    border-top-color: #6e3fc6;
}


.card-v2 .icon-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.card-v2 .icon-heading img {
    width: 40px;
    height: 40px;
}

.success-title-v2 {
    font-size: 1rem;
    font-weight: bold;
    color: #002c5f;
    line-height: 1.4;
    margin: 0;
}

/* New Report Section */
.report-section-v2 {
    width: 80%;
    background: #f4f2fb;
    border-radius: 10px;
    padding: 25px;
    margin: 30px;
    border-left: 4px solid #002c5f;
}

.report-header-v2 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.report-header-v2 svg {
    width: 30px;
    height: 30px;
}

.report-header-v2 h2 {
    color: #002c5f;
    font-size: 1.4rem;
    margin: 0;
}

.report-list-v2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.report-list-v2 li {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    padding-right: 25px;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.5;
}

.report-list-v2 li::before {
    content: "→";
    position: absolute;
    right: 0;
    color: #6e3fc6;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 900px) {
    .container-v2 {
        grid-template-columns: 1fr;
    }

    .images-column-v2 {
        order: 2;
    }
}

@media (max-width: 600px) {
    .grid-v2 {
        grid-template-columns: 1fr;
    }

    .section-header-v2 {
        flex-direction: column;
        text-align: center;
    }
}


/* New Base Styles */
.section-v3 {
    max-width: 1200px;
    margin: 100px auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* New Header Style */
.section-header-v3 {
    padding: 30px;
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-header-v3 img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.section-header-v3 h1 {
    margin: 0;
    font-size: 1.8rem;
    flex-grow: 1;
    color: #09775c;
}

/* New Container Layout */
.container-v3 {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    padding: 0 30px;
    align-items: center;
}

/* New Images Column */
.images-column-v3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    align-content: start;
}

.images-column-v3 img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.images-column-v3 img:hover {
    transform: scale(1.03);
}

.images-column-v3 img:first-child {
    grid-column: span 2;
}

/* New Content Column */
.content-column-v3 {
    padding: 15px;
}

.title-area-v3 {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #09775c;
}

.title-area-v3 h2 {
    color: #b6823a;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.title-area-v3 h3 {
    color: #09775c;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    padding-bottom: 10px;
}

/* New Card Grid */
.grid-v3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.card-v3 {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(9, 119, 92, 0.1);
    border-top: 4px solid #09775c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-v3:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-v3.blue {
    border-top-color: #b6823a;
}

.card-v3.green,
.card-v3.darkgreen {
    border-top-color: #09775c;
}

.card-v3 .icon-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.card-v3 .icon-heading img {
    width: 40px;
    height: 40px;
}

.success-title-v3 {
    font-size: 1rem;
    font-weight: bold;
    color: #b6823a;
    line-height: 1.4;
    margin: 0;
}

/* New Report Section */
.report-section-v3 {
    width: 80%;
    background: #fff9f1;
    border-radius: 10px;
    padding: 25px;
    margin: 30px;
    border-left: 4px solid #09775c;
}

.report-header-v3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.report-header-v3 svg {
    width: 30px;
    height: 30px;
}

.report-header-v3 h2 {
    color: #09775c;
    font-size: 1.4rem;
    margin: 0;
}

.report-list-v3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.report-list-v3 li {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    padding-right: 25px;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.5;
}

.report-list-v3 li::before {
    content: "→";
    position: absolute;
    right: 0;
    color: #b6823a;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 900px) {
    .container-v3 {
        grid-template-columns: 1fr;
    }

    .images-column-v3 {
        order: 2;
    }
}

@media (max-width: 600px) {
    .grid-v3 {
        grid-template-columns: 1fr;
    }

    .section-header-v3 {
        flex-direction: column;
        text-align: center;
    }
}

/* New Base Styles */
.section-v4 {
    max-width: 1200px;
    margin: 100px auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* New Header Style */
.section-header-v4 {
    padding: 30px;
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-header-v4 img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.section-header-v4 h1 {
    margin: 0;
    font-size: 1.8rem;
    flex-grow: 1;
    color: #214E2D;
}

/* New Container Layout */
.container-v4 {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    padding: 0 30px;
    align-items: center;
}

/* New Images Column */
.images-column-v4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    align-content: start;
}

.images-column-v4 img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.images-column-v4 img:hover {
    transform: scale(1.03);
}

.images-column-v4 img:first-child {
    grid-column: span 2;
}

/* New Content Column */
.content-column-v4 {
    padding: 15px;
}

.title-area-v4 {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #214E2D;
}

.title-area-v4 h2 {
    color: #214E2D;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.title-area-v4 h3 {
    color: #55AC66;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    padding-bottom: 10px;
}

/* New Card Grid */
.grid-v4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.card-v4 {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(33, 78, 45, 0.1);
    border-top: 4px solid #214E2D;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-v4:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-v4.blue {
    border-top-color: #EECE5E;
}

.card-v4.green {
    border-top-color: #55AC66;
}

.card-v4.darkgreen {
    border-top-color: #214E2D;
}

.card-v4 .icon-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.card-v4 .icon-heading img {
    width: 40px;
    height: 40px;
}

.success-title-v4 {
    font-size: 1rem;
    font-weight: bold;
    color: #214E2D;
    line-height: 1.4;
    margin: 0;
}

/* New Report Section */
.report-section-v4 {
    width: 80%;
    background: #f8f8f8;
    border-radius: 10px;
    padding: 25px;
    margin: 30px;
    border-left: 4px solid #214E2D;
}

.report-header-v4 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.report-header-v4 svg {
    width: 30px;
    height: 30px;
}

.report-header-v4 h2 {
    color: #214E2D;
    font-size: 1.4rem;
    margin: 0;
}

.report-list-v4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.report-list-v4 li {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    padding-right: 25px;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.5;
}

.report-list-v4 li::before {
    content: "→";
    position: absolute;
    right: 0;
    color: #EECE5E;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 900px) {
    .container-v4 {
        grid-template-columns: 1fr;
    }

    .images-column-v4 {
        order: 2;
    }
}

@media (max-width: 600px) {
    .grid-v4 {
        grid-template-columns: 1fr;
    }

    .section-header-v4 {
        flex-direction: column;
        text-align: center;
    }
}

/* Base Styles - V5 */
.section-v5 {
    max-width: 1200px;
    margin: 80px auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(26, 46, 64, 0.1);
}

/* Header Style */
.section-header-v5 {
    padding: 30px;
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-header-v5 img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.section-header-v5 h1 {
    margin: 0;
    font-size: 1.8rem;
    flex-grow: 1;
    color: #1A2E40;
}

/* Container Layout */
.container-v5 {
    padding: 30px;
}

/* Goal Section */
.goal-section-v5 {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #98C1D9;
}

.goal-header-v5 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.goal-header-v5 svg {
    width: 28px;
    height: 28px;
}

.goal-header-v5 h2 {
    color: #1A2E40;
    font-size: 1.5rem;
    margin: 0;
}

.goal-content-v5 {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #3D5A80;
    padding-right: 10px;
}

/* Outputs Section */
.outputs-section-v5 {
    margin-bottom: 40px;
}

.outputs-header-v5 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.outputs-header-v5 svg {
    width: 28px;
    height: 28px;
}

.outputs-header-v5 h2 {
    color: #1A2E40;
    font-size: 1.5rem;
    margin: 0;
}

.outputs-grid-v5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.output-card-v5 {
    background: #F8FAFC;
    border-radius: 8px;
    padding: 25px;
    border-top: 4px solid #3D5A80;
    box-shadow: 0 4px 12px rgba(26, 46, 64, 0.08);
}

.output-card-v5 h3 {
    color: #1A2E40;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #98C1D9;
}

.output-card-v5 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.output-card-v5 li {
    position: relative;
    padding-right: 25px;
    margin-bottom: 12px;
    color: #3D5A80;
    line-height: 1.6;
}

.output-card-v5 li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: #3D5A80;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Impact Section */
.impact-section-v5 {
    margin-top: 50px;
}

.impact-header-v5 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.impact-header-v5 svg {
    width: 28px;
    height: 28px;
}

.impact-header-v5 h2 {
    color: #1A2E40;
    font-size: 1.5rem;
    margin: 0;
}

.impact-grid-v5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.impact-card-v5 {
    background: white;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #E0FBFC;
    box-shadow: 0 4px 12px rgba(152, 193, 217, 0.2);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.impact-icon-v5 svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    margin-top: 3px;
}

.impact-card-v5 p {
    margin: 0;
    color: #1A2E40;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header-v5 {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .outputs-grid-v5 {
        grid-template-columns: 1fr;
    }
    
    .impact-grid-v5 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-v5 {
        margin: 40px auto;
        border-radius: 0;
    }
    
    .section-header-v5, .container-v5 {
        padding: 20px;
    }
}
/* Add this to your existing CSS */
.images-row-v5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.images-row-v5 img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(26, 46, 64, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E0FBFC;
}

.images-row-v5 img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(26, 46, 64, 0.15);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .images-row-v5 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .images-row-v5 img:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .images-row-v5 {
        grid-template-columns: 1fr;
    }
    
    .images-row-v5 img:last-child {
        grid-column: span 1;
    }
    
    .images-row-v5 img {
        height: 180px;
    }
}