﻿:root {
    --blue: #0b3c8d;
    --orange: #f28c28;
    --light: #f4f7ff;
    --dark: #333;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--dark);
    background: #fff;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

section {
    padding: 70px 0;
}

h1, h2, h3 {
    color: var(--blue);
}

/* HERO */
.hero {
    background: linear-gradient(rgba(11,60,141,.85),rgba(11,60,141,.85));
    color: #fff;
    text-align: center;
    padding: 120px 20px;
}

    .hero h1 {
        font-size: 42px;
        color: #fff;
    }

    .hero p {
        max-width: 900px;
        margin: 20px auto;
        font-size: 18px;
    }

.btn {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

    .btn:hover {
        background: #d8741d;
        transform: translateY(-3px);
    }

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

    .about-grid img {
        width: 100%;
        border-radius: 12px;
        transition: .4s;
    }

        .about-grid img:hover {
            transform: scale(1.05);
        }

/* PROGRAM CARDS */
.light {
    background: var(--light);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .4s;
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,.15);
    }

    .card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

.card-content {
    padding: 20px;
}

.card h3 {
    margin-bottom: 0px !important;
    color: var(--orange);
    margin-top: 0;
}

    .card h4
    {
        font-size:18px;
        margin-top:10px;
        margin-bottom:0px;
    }
    /* WHY DGI */
    .why-list li {
        list-style: none;
        margin-bottom: 12px;
        position: relative;
        padding-left: 22px;
    }

    .why-list li::before {
        content: "✔";
        position: absolute;
        left: 0;
        color: var(--orange);
    }

/* FAQ */
.faq-item {
    margin-bottom: 25px;
    padding: 20px;
    border-left: 5px solid var(--orange);
    background: #fff;
    transition: .3s;
}

    .faq-item:hover {
        background: #fff7ef;
    }

/* MAP */
iframe {
    border-radius: 14px;
}

/* FOOTER */
footer {
    background: var(--blue);
    color: #fff;
    text-align: center;
    padding: 35px 15px;
    margin-top: 40px;
}

@media(max-width:768px) {
    .about-grid {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 32px
    }
}
