/* ================= GENERAL ================= */
body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #f5f7fa;
}

/* ================= HERO ================= */
.hero {
    background: linear-gradient(135deg, #1f3c88, #4a6edb);
    color: #ffffff;
    text-align: center;
    padding: 70px 20px;
    position: relative;
}

.hero h1 {
    margin: 0;
    font-size: 2.3rem;
}

.hero p {
    margin-top: 12px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 6px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

/* ================= SECTIONS ================= */
.section {
    max-width: 900px;
    margin: 45px auto;
    padding: 0 20px;
}

.section h2 {
    color: #1f3c88;
    margin-bottom: 12px;
}

.section h3 {
    margin-top: 30px;
    color: #444;
}

/* ================= HIGHLIGHT ================= */
.highlight {
    background-color: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ================= IMAGES ================= */



/* ================= LISTS ================= */
ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .image-row img {
        max-width: 95%;
    }

    .section {
        margin: 30px auto;
    }
}

/* ================= CAROUSEL ================= */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    margin: 30px 0;
}

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px;
}

.carousel::-webkit-scrollbar {
    display: none;
}


.carousel img {
    flex: 0 0 auto;
    width: 800px;        /* or 80vw for responsive */
    max-width: 1000px;   /* prevent them from getting too big */
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

/* ================= BUTTONS ================= */
.carousel-btn {
    background: #1f3c88;
    color: white;
    border: none;
    font-size: 22px;
    padding: 14px 18px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: #4a6edb;
}

.carousel-btn.left {
    margin-right: 10px;
}

.carousel-btn.right {
    margin-left: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
    .carousel img {
        width: 90%;
    }
}





