﻿

/* ---------- Hero Image ---------- */
.hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* ---------- Section Headings ---------- */
.content-section h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
}

.content-section h2 {
    color: #0284C7;
    font-weight: 600;
    margin-top: 40px;
    font-size: 1.5rem;
}

.content-section p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

/* ---------- Highlight Box ---------- */
.highlight-box {
    background: #e9f2ff;
    border-left: 5px solid #0284C7;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

/* ---------- Secondary Images ---------- */
.image-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.image-col {
    flex: 1 1 calc(50% - 20px);
    display: flex;
    justify-content: center;
}

.secondary-img {
    width: 100%;
    max-width: 520px;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .secondary-img:hover {
        transform: scale(1.03);
        box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    }

/* ---------- Centered Single Image ---------- */
.image-center {
    text-align: center;
    margin: 40px 0;
}

    .image-center img {
        width: 75%;
        max-width: 800px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

/* ---------- Responsive ---------- */
@@media (max-width: 768px) {
    .image-col {
        flex: 1 1 100%;
    }

    .secondary-img {
        height: 220px;
    }

    .hero-img {
        height: 300px;
    }

    .content-section h1 {
        font-size: 1.6rem;
    }

    .content-section h2 {
        font-size: 1.3rem;
    }
}
