body {
    margin: 0;
    padding: 0;
    background: #ffffff !important; /* ✅ force plain white */
    background-image: none !important; /* ✅ block any old image */
    font-family: Arial, sans-serif; /* ✅ keep consistent font */
    color: #333;
}

html {
    background: #ffffff !important;
    background-image: none !important;
}

* {
    box-sizing: border-box;
    max-width: 100%;
}

/* ===== Header ===== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: #ffffff;
    position: absolute;
    width: 100%;
    top: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    margin-right: 10px;
}

.title h1 {
    margin: 0;
    font-size: 20px;
    color: #002366;
}

.title h2 {
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    color: #002366;
}

.title p {
    margin: 0;
    font-size: 12px;
    color: red;
}

/* ===== Navigation ===== */
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav li {
    display: flex;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

nav a:hover {
    color: #007BFF;
}

nav ul li a.active {
    font-weight: bold;
    color: #006241;
}

/* ===== Slideshow ===== */
.slideshow-box {
    display: flex;
    justify-content: center;
    margin: 120px 0 20px;
}

.slideshow-container {
    position: relative;
    width: 1500px;
    height: 350px;
    overflow: hidden;
    border: 4px solid #006241;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.slideshow-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slideshow-container .prev,
.slideshow-container .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    z-index: 1;
    transition: background 0.3s;
}

.slideshow-container .prev:hover,
.slideshow-container .next:hover {
    background: rgba(0,0,0,0.8);
}

.slideshow-container .prev { left: 15px; }
.slideshow-container .next { right: 15px; }

/* ===== About Section ===== */
.about-section {
    background-color: #f5f5f5;
    padding: 50px 20px;
    text-align: center;
    line-height: 1.8;
}

.about-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #002366;
}

.about-section h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #444;
}

.about-section p, 
.about-section ul {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 16px;
    color: #555;
    text-align: justify;
}

.about-section ul {
    list-style-type: disc;
    padding-left: 40px;
    text-align: left;
}

/* ===== Footer Section ===== */
.footer {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #ddd;
}

.footer h3 {
    font-size: 22px;
    margin-bottom: 30px;
    color: #333;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.footer-column {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: left;
}

.footer-column strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #111;
}

.footer-column p, 
.footer-column a {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-decoration: none;
}

.footer-column a:hover {
    color: #007bff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .slideshow-container {
        height: 200px;
        width: 100%;
    }

    .about-section p,
    .about-section ul {
        padding: 0 10px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        max-width: 100%;
        text-align: center;
    }
}
