/* Base Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
:root {
    --primary: #4a154b;
    --secondary: #ffb703;
    --accent: #fb8500;
    --light: #f8f9fa;
    --text: #333;
}

body {
    color: var(--text);
    background-color: #fff;
    line-height: 1.6;
}

/* --- TOP HEADER SECTION --- */
.banner {
    background: linear-gradient(135deg, var(--primary), #6b2172);
    color: white;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo-box {
    width: 60px;
    height: 60px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary);
    font-size: 24px;
}
.brand-text h1 {
    font-size: 24px;
    letter-spacing: 0.5px;
}
.brand-text p {
    font-size: 13px;
    color: #ddd;
}
.top-contact {
    text-align: right;
    font-size: 14px;
}
.top-contact a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: bold;
}

/* Notice Marquee */
.notice-bar {
    background-color: var(--accent);
    color: white;
    padding: 8px 0;
    font-weight: 500;
}

/* Sticky Navigation Menu */
.navbar {
    background-color: #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
}
.navbar a {
    display: block;
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}
.navbar a:hover {
    background-color: var(--primary);
    color: var(--secondary);
}

/* --- MIDDLE WORKSPACE IFRAME --- */
.content-window {
    width: 100%;
    height: 650px; /* Adjust height to fit slider and home text comfortably */
    border: none;
    display: block;
    background-color: #fff;
}

/* --- BOTTOM 3-COLUMN INFO BLOCK --- */
.info-section {
    background-color: var(--light);
    padding: 40px 5%;
    border-top: 4px solid var(--secondary);
}
.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.info-column {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    min-height: 350px;
}
.info-column h3 {
    color: var(--primary);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 5px;
    font-size: 18px;
}

/* Contact List Layout */
.contact-details p {
    margin-bottom: 12px;
    font-size: 14px;
}
.contact-details a {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
}

/* --- FOOTER AT BOTTOM --- */
footer {
    background-color: #222;
    color: #ccc;
    text-align: center;
    padding: 20px;
    font-size: 13px;
}

/* Responsive Handling */
@media (max-width: 768px) {
    .banner { flex-direction: column; text-align: center; gap: 15px; }
    .top-contact { text-align: center; }
    .navbar ul { flex-direction: column; text-align: center; }
    .navbar a { padding: 10px; }
    .info-grid { grid-template-columns: 1fr; }
}