* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f7fa;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Top Utilities Bar */
.top-utilities {
    background: linear-gradient(135deg, #1a3e3e 0%, #0e2a2a 100%);
    color: white;
    padding: 8px 0;
    border-bottom: 3px solid #e67e22;
    position: relative;
    z-index: 1001;
}

.top-utilities .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.utility-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.utility-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
    padding: 4px 0;
}

.utility-links a:hover {
    color: #e67e22;
}

/* Language toggle with Google Translate */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-toggle .lang-label {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

/* Hide Google Translate branding and style the dropdown */
.goog-te-gadget {
    color: #fff !important;
    font-size: 13px !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}
.goog-te-gadget .goog-te-combo {
    background: #1a3e3e;
    color: #fff;
    border: 2px solid #e67e22;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    outline: none;
}
.goog-te-gadget .goog-te-combo:hover {
    background: #e67e22;
    color: #1a3e3e;
}
.goog-te-gadget a {
    display: none !important;
}
.goog-te-gadget span {
    display: none !important;
}
/* Hide the Google Translate banner */
.goog-te-banner-frame {
    display: none !important;
}
body {
    top: 0px !important;
}

/* Main Header */
.main-header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 1 auto;
}

.coat-of-arms {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #1a3e3e, #0e2a2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e67e22;
    font-size: 32px;
    font-weight: bold;
    flex-shrink: 0;
    overflow: hidden;
}

.coat-of-arms img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.institution-details {
    text-align: center;
    flex: 1 1 auto;
    min-width: 200px;
}

.institution-details h1 {
    color: #1a3e3e;
    font-size: clamp(24px, 5vw, 34px);
    margin-bottom: 4px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.institution-details p {
    color: #4a5568;
    font-size: clamp(14px, 2.5vw, 18px);
    margin: 0;
}

.institution-details .swahili {
    color: #e67e22;
    font-weight: 500;
    font-size: clamp(13px, 2vw, 16px);
}

.commissioner-badge {
    background: linear-gradient(135deg, #f8fafc, #edf2f7);
    padding: 10px 20px;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
    min-width: 200px;
    flex-shrink: 0;
}

.commissioner-badge span {
    display: block;
    color: #1a3e3e;
    font-weight: bold;
    font-size: 14px;
}

.commissioner-badge small {
    color: #4a5568;
    font-size: 12px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1002;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #1a3e3e;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Navigation */
.main-nav {
    background-color: #1a3e3e;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    position: relative;
}

.nav-item {
    position: relative;
    flex: 1;
    text-align: center;
}

.nav-item > a {
    display: block;
    padding: 18px 12px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(13px, 2vw, 15px);
    transition: all 0.3s;
    border-right: 1px solid #2a4e4e;
    white-space: nowrap;
}

.nav-item:last-child > a {
    border-right: none;
}

.nav-item:hover > a {
    background-color: #e67e22;
    color: #1a3e3e;
}

/* Dropdown Menu */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 280px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    border-radius: 0 0 12px 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    border-top: 3px solid #e67e22;
    text-align: left;
}

.nav-item:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
}

.dropdown-content a {
    display: block;
    padding: 14px 20px;
    color: #1a2b3c;
    text-decoration: none;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s;
    font-size: 14px;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f0f9ff;
    color: #1a3e3e;
    padding-left: 28px;
    font-weight: 500;
}

/* Hero Slider Section - CENTERED & SMALLER */
.hero-slider {
    position: relative;
    height: clamp(280px, 45vh, 420px);
    overflow: hidden;
    background-color: #1a3e3e;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    bottom: clamp(30px, 5vh, 70px);
    left: 5%;
    right: 5%;
    background: rgba(26, 62, 62, 0.92);
    color: white;
    padding: clamp(16px, 3vw, 24px);
    border-radius: 10px;
    backdrop-filter: blur(6px);
    border-left: 4px solid #e67e22;
    max-width: 500px;
    margin: 0 auto;
}

.slide-content h2 {
    font-size: clamp(18px, 3.5vw, 26px);
    margin-bottom: 8px;
    color: #e67e22;
    line-height: 1.2;
}

.slide-content p {
    font-size: clamp(13px, 2vw, 15px);
    line-height: 1.5;
    opacity: 0.95;
}

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot.active {
    background-color: #e67e22;
    transform: scale(1.3);
    border-color: white;
}

/* Featured Leadership Section */
.leadership-section {
    padding: clamp(40px, 8vw, 60px) 0;
    background-color: white;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.commissioner-profile {
    display: flex;
    gap: 25px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    padding: clamp(20px, 4vw, 30px);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    flex-wrap: wrap;
}

.commissioner-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1a3e3e, #0e2a2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e67e22;
    font-size: 48px;
    border: 3px solid #e67e22;
    flex-shrink: 0;
    margin: 0 auto;
}

.commissioner-info {
    flex: 1;
    min-width: 200px;
}

.commissioner-info h3 {
    color: #1a3e3e;
    font-size: clamp(20px, 4vw, 22px);
    margin-bottom: 5px;
}

.commissioner-info .title {
    color: #e67e22;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 16px;
}

.commissioner-info .message {
    color: #2d3e50;
    line-height: 1.7;
    font-style: italic;
    font-size: 14px;
}

/* ===== two-column grid inside commissioner-info ===== */
.info-two-col {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 25px;
    align-items: start;
    margin-top: 12px;
}

.info-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.big-feature-img {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 4 / 3;
    background: linear-gradient(145deg, #1a3e3e, #0e2a2a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e67e22;
    font-size: 70px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border: 3px solid #e67e22;
    margin-bottom: 10px;
    transition: transform 0.3s;
}
.big-feature-img:hover {
    transform: scale(1.02);
}

.big-feature-img i {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.info-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* news card inside right column */
.news-card-small {
    display: flex;
    gap: 14px;
    background: white;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    border-left: 4px solid #e67e22;
    transition: all 0.25s ease;
    align-items: flex-start;
}
.news-card-small:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    background: #fcfcfc;
}

.news-thumb {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    background: #1a3e3e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e67e22;
    font-size: 28px;
    background: linear-gradient(145deg, #1a3e3e, #0e2a2a);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.news-body {
    flex: 1;
}
.news-body .news-title {
    font-weight: 700;
    color: #1a3e3e;
    font-size: 1rem;
    margin-bottom: 4px;
    line-height: 1.3;
}
.news-body .news-desc {
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    font-size: 0.7rem;
    color: #e67e22;
    font-weight: 600;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.statement-excerpt {
    margin-top: 6px;
    border-top: 1px solid #e2e8f0;
    padding-top: 12px;
}

/* Responsive for two-col */
@media screen and (max-width: 768px) {
    .info-two-col {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .big-feature-img {
        max-width: 100%;
        height: 200px;
        font-size: 50px;
    }
    .news-card-small {
        padding: 12px;
    }
    .news-thumb {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* ===== PICTURE GALLERY SECTION ===== */
.gallery-section {
    padding: clamp(40px, 8vw, 70px) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 10px;
}

.gallery-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #edf2f7;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-color: #e67e22;
}

.gallery-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(145deg, #1a3e3e, #0e2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: #e67e22;
    position: relative;
    overflow: hidden;
}

.gallery-image .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 62, 62, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 32px;
    background: #e67e22;
    padding: 14px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-overlay i {
    transform: scale(1.1);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-info {
    padding: 18px 16px 20px;
}

.gallery-info .gallery-name {
    font-weight: 700;
    color: #1a3e3e;
    font-size: 16px;
    margin-bottom: 4px;
}

.gallery-info .gallery-title {
    color: #e67e22;
    font-size: 14px;
    font-weight: 600;
}

.gallery-info .gallery-role {
    color: #4a5568;
    font-size: 13px;
    margin-top: 6px;
    background: #f0f4f8;
    display: inline-block;
    padding: 3px 14px;
    border-radius: 20px;
}

.gallery-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e67e22;
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===== Two-column gallery layout ===== */
.gallery-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.gallery-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-sidebar .sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-left: 4px solid #e67e22;
}

.sidebar-card h4 {
    color: #1a3e3e;
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card h4 i {
    color: #e67e22;
}

.sidebar-card p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
}

.sidebar-card .sidebar-stat {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #edf2f7;
}

.sidebar-card .sidebar-stat:last-child {
    border-bottom: none;
}

.sidebar-stat .stat-label {
    color: #4a5568;
    font-size: 14px;
}

.sidebar-stat .stat-value {
    color: #1a3e3e;
    font-weight: 700;
    font-size: 14px;
}

/* Responsive for gallery */
@media screen and (max-width: 992px) {
    .gallery-wrapper {
        grid-template-columns: 1fr;
    }
    
    .gallery-main {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .gallery-main {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* ===== CHAIRPERSON'S MESSAGE SECTION ===== */
.chairperson-section {
    padding: clamp(40px, 8vw, 70px) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.chairperson-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    padding: clamp(30px, 4vw, 50px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    align-items: start;
}

.chairperson-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.chairperson-image {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 4 / 5;
    background: linear-gradient(145deg, #1a3e3e, #0e2a2a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e67e22;
    font-size: 90px;
    border: 4px solid #e67e22;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: transform 0.3s;
    overflow: hidden;
    position: relative;
}

.chairperson-image:hover {
    transform: scale(1.02);
}

.chairperson-image i {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.chairperson-name {
    color: #1a3e3e;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    margin-bottom: 4px;
}

.chairperson-title {
    color: #e67e22;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 600;
    margin-bottom: 15px;
}

.chairperson-quote {
    color: #4a5568;
    font-style: italic;
    font-size: 14px;
    line-height: 1.6;
    border-left: 3px solid #e67e22;
    padding-left: 16px;
    text-align: left;
    max-width: 280px;
}

.chairperson-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chairperson-right .section-label {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.chairperson-right h2 {
    color: #1a3e3e;
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.2;
    margin-bottom: 8px;
}

.chairperson-right h2 span {
    color: #e67e22;
}

.chairperson-message {
    color: #2d3e50;
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 10px;
}

.chairperson-message strong {
    color: #1a3e3e;
}

.chairperson-signature {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.chairperson-signature .sig-left {
    display: flex;
    flex-direction: column;
}

.chairperson-signature .sig-name {
    font-weight: 700;
    color: #1a3e3e;
    font-size: 18px;
}

.chairperson-signature .sig-title {
    color: #4a5568;
    font-size: 14px;
}

.chairperson-signature .sig-date {
    color: #4a5568;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chairperson-signature .sig-date i {
    color: #e67e22;
}

/* Responsive for chairperson */
@media screen and (max-width: 992px) {
    .chairperson-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .chairperson-left {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .chairperson-image {
        max-width: 180px;
        aspect-ratio: 4 / 5;
        font-size: 60px;
    }

    .chairperson-quote {
        max-width: 100%;
        text-align: center;
        border-left: none;
        border-top: 3px solid #e67e22;
        padding-left: 0;
        padding-top: 12px;
    }

    .chairperson-name {
        font-size: 22px;
    }
}

@media screen and (max-width: 600px) {
    .chairperson-wrapper {
        padding: 20px;
    }

    .chairperson-image {
        max-width: 140px;
        font-size: 50px;
    }

    .chairperson-left {
        flex-direction: column;
        align-items: center;
    }

    .chairperson-quote {
        text-align: center;
    }

    .chairperson-signature {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #f8fafc, #eef2f6);
    border-radius: 12px;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item .number {
    color: #e67e22;
    font-size: clamp(20px, 4vw, 24px);
    font-weight: bold;
}

.stat-item .label {
    color: #1a3e3e;
    font-size: clamp(11px, 2vw, 12px);
    margin-top: 5px;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: clamp(30px, 6vw, 50px);
}

.section-title h2 {
    color: #1a3e3e;
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #e67e22;
    border-radius: 2px;
}

.section-title p {
    color: #4a5568;
    font-size: clamp(14px, 3vw, 16px);
}

/* Drugs Facts Section */
.drugs-facts {
    padding: clamp(40px, 8vw, 60px) 0;
    background-color: #f8fafc;
}

.drugs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.drug-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    height: 100%;
}

.drug-card:hover {
    transform: translateY(-8px);
}

.drug-icon {
    height: 120px;
    background: linear-gradient(135deg, #1a3e3e, #0e2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #e67e22;
}

.drug-content {
    padding: 25px 20px;
    text-align: center;
}

.drug-content h3 {
    color: #1a3e3e;
    margin-bottom: 12px;
    font-size: 20px;
}

.drug-content p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.drug-link {
    color: #e67e22;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    transition: color 0.3s;
}

.drug-link:hover {
    color: #1a3e3e;
}

/* Treatment Centers Section */
.treatment-section {
    padding: clamp(40px, 8vw, 60px) 0;
    background-color: white;
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.treatment-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    height: 100%;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

.treatment-icon {
    font-size: 48px;
    color: #e67e22;
    margin-bottom: 20px;
}

.treatment-card h3 {
    color: #1a3e3e;
    margin-bottom: 15px;
    font-size: 20px;
}

.treatment-card p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.treatment-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #1a3e3e;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 14px;
}

.treatment-btn:hover {
    background-color: #e67e22;
    color: #1a3e3e;
    transform: scale(1.05);
}

/* Kituo cha Habari (News Center) */
.news-center {
    padding: clamp(40px, 8vw, 60px) 0;
    background-color: #f8fafc;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.public-statements {
    background-color: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.public-statements h3, .media-libraries h3 {
    color: #1a3e3e;
    margin-bottom: 20px;
    font-size: 22px;
    border-bottom: 2px solid #e67e22;
    padding-bottom: 10px;
}

.statement-item {
    padding: 18px 0;
    border-bottom: 1px solid #e2e8f0;
}

.statement-item:last-child {
    border-bottom: none;
}

.statement-date {
    color: #e67e22;
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 13px;
}

.statement-title {
    color: #1a3e3e;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.statement-excerpt {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.5;
}

.media-libraries {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.library-card {
    background-color: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.library-card:hover {
    transform: translateY(-5px);
}

.library-icon {
    font-size: 42px;
    color: #e67e22;
    margin-bottom: 15px;
}

.library-card h4 {
    color: #1a3e3e;
    margin-bottom: 10px;
    font-size: 18px;
}

.library-card p {
    color: #4a5568;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.library-link {
    color: #e67e22;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
}

/* Latest News Section */
.latest-news {
    padding: clamp(40px, 8vw, 60px) 0;
    background-color: white;
}

.news-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.15);
}

.news-image {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1a3e3e, #0e2a2a);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #e67e22;
    color: white;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: bold;
}

.news-content {
    padding: 25px 20px;
}

.news-content h4 {
    color: #1a3e3e;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.4;
}

.news-content p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #e67e22;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Nifanyaje? Section */
.help-section {
    padding: clamp(40px, 8vw, 60px) 0;
    background: linear-gradient(135deg, #1a3e3e 0%, #0e2a2a 100%);
    color: white;
}

.help-section .section-title h2 {
    color: white;
}

.help-section .section-title h2:after {
    background-color: #e67e22;
}

.help-section .section-title p {
    color: #e67e22;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.help-card {
    background: rgba(255,255,255,0.1);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 126, 34, 0.3);
    transition: transform 0.3s;
    height: 100%;
}

.help-card:hover {
    transform: translateY(-5px);
    background: rgba(230, 126, 34, 0.2);
}

.help-icon {
    font-size: 42px;
    color: #e67e22;
    margin-bottom: 18px;
}

.help-card h3 {
    margin-bottom: 12px;
    font-size: clamp(16px, 4vw, 18px);
}

.help-card p {
    margin-bottom: 22px;
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.5;
}

.help-link {
    color: white;
    text-decoration: none;
    padding: 10px 22px;
    border: 2px solid #e67e22;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.help-link:hover {
    background-color: #e67e22;
    color: #1a3e3e;
    border-color: transparent;
}

/* Publications Preview */
.publications-preview {
    padding: clamp(40px, 8vw, 60px) 0;
    background-color: #f8fafc;
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.publication-item {
    background-color: white;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}

.publication-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.1);
    background-color: #1a3e3e;
}

.publication-item:hover .publication-icon,
.publication-item:hover h4,
.publication-item:hover p {
    color: white;
}

.publication-icon {
    font-size: 36px;
    color: #e67e22;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.publication-item h4 {
    color: #1a3e3e;
    font-size: 16px;
    margin-bottom: 6px;
    transition: color 0.3s;
}

.publication-item p {
    color: #4a5568;
    font-size: 13px;
    transition: color 0.3s;
}

/* Footer */
.footer {
    background-color: #0a1a1a;
    color: #f0f4f8;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #e67e22;
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e67e22;
}

.footer-section p {
    margin-bottom: 12px;
    font-size: 14px;
    color: #cbd5e0;
    display: flex;
    align-items: center;
    gap: 10px;
    word-break: break-word;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #e67e22;
    transform: translateX(5px);
}

.government-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
}

.government-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.government-links a:hover {
    color: #e67e22;
}

.footer-bottom {
    border-top: 1px solid #2d3e4e;
    padding-top: 25px;
    text-align: center;
    color: #a0b3c6;
    font-size: 13px;
}

/* ===== ADDED FROM board-members.css ===== */

/* Map Section Styles */
.map-section {
    padding: clamp(40px, 8vw, 70px) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.map-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.map-container {
    position: relative;
    min-height: 400px;
    background: #1a3e3e;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,62,62,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.map-info {
    padding: 35px 30px;
    background: linear-gradient(135deg, #1a3e3e 0%, #0e2a2a 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.map-info-header h3 {
    font-size: clamp(20px, 2.5vw, 26px);
    color: white;
    margin: 0;
}

.map-badge {
    background: #e67e22;
    color: white;
    padding: 5px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.map-info-details {
    flex: 1;
}

.map-info-details p {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #e8edf2;
    line-height: 1.5;
}

.map-info-details p i {
    width: 20px;
    color: #e67e22;
    font-size: 16px;
}

.map-direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #e67e22;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-top: 20px;
    align-self: flex-start;
    border: 2px solid transparent;
}

.map-direction-btn:hover {
    background: transparent;
    color: #e67e22;
    border-color: #e67e22;
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}

.map-direction-btn i {
    font-size: 18px;
}

/* Tab Styles */
.nav-tabs .nav-link {
    color: #1a3e3e;
    border-radius: 0;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.2s;
}
.nav-tabs .nav-link:hover {
    border-color: #e67e22;
    color: #e67e22;
    background: transparent;
}
.nav-tabs .nav-link.active {
    color: #1a3e3e;
    background: transparent;
    border-bottom: 3px solid #e67e22;
}
.tab-content {
    background: #f8fafc;
    padding: 20px 16px;
    border-radius: 0 0 12px 12px;
    border: 1px solid #e2e8f0;
    border-top: none;
    min-height: 200px;
}
.card-primary {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.card-body {
    padding: 20px 16px;
}
/* ensure tab-pane fade works with Bootstrap */
.tab-pane {
    animation: fadeIn 0.25s ease;
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Guidelines & Standards Section */
.guidelines-section {
    padding: clamp(40px, 8vw, 60px) 0;
    background: #f4f7fa;
}

.guidelines-section .section-title h2 {
    color: #1a3e3e;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.guidelines-col {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}
.guidelines-col:hover {
    transform: translateY(-4px);
}

.guidelines-col h3 {
    color: #1a3e3e;
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e67e22;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.guidelines-col h3 i {
    color: #e67e22;
}

.guidelines-col p {
    color: #2d3e50;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.guidelines-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.guidelines-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #edf2f7;
    font-size: 14px;
    color: #1a3e3e;
}
.guidelines-list li:last-child {
    border-bottom: none;
}

.guidelines-list li a {
    color: #e67e22;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    background: #fef3e8;
    padding: 4px 14px;
    border-radius: 30px;
    transition: 0.2s;
    white-space: nowrap;
}
.guidelines-list li a:hover {
    background: #e67e22;
    color: white;
}

.guidelines-footer {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0;
}
.guidelines-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a3e3e;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.2s;
}
.guidelines-footer a i {
    color: #e67e22;
}
.guidelines-footer a:hover {
    color: #e67e22;
}

/* quick links row (viwango vya haraka) */
.quick-links-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}
.quick-links-row a {
    background: #f8fafc;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: #1a3e3e;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e2e8f0;
    transition: 0.2s;
}
.quick-links-row a i {
    color: #e67e22;
    font-size: 18px;
    width: 24px;
    text-align: center;
}
.quick-links-row a:hover {
    background: #1a3e3e;
    color: white;
    border-color: #1a3e3e;
}
.quick-links-row a:hover i {
    color: white;
}

/* WhatsApp Logo and Contact Styles */
.whatsapp-logo {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
    background: white;
    color: #25D366;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-card h2 {
    color: #128C7E;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.contact-info {
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-item i {
    background-color: #f0f8ff;
    color: #128C7E;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 15px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.instructions {
    background-color: #f9f9f9;
    border-left: 4px solid #25D366;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin-top: 25px;
}

.instructions h3 {
    color: #128C7E;
    margin-bottom: 10px;
}

.instructions ul {
    padding-left: 20px;
}

.instructions li {
    margin-bottom: 8px;
}

/* Floating WhatsApp Button (enhanced) */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 40px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.8);
}

.notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #e74c3c;
    color: white;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Message Form */
.message-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

.form-group input, .form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ===== END OF ADDED FROM board-members.css ===== */

/* Responsive Design - Mobile Navigation */
@media screen and (max-width: 1024px) {
    .header-content {
        justify-content: center;
        text-align: center;
    }

    .logo-area {
        justify-content: center;
        text-align: left;
    }

    .commissioner-badge {
        margin: 0 auto;
    }
    
    .hero-slider {
        max-width: 100%;
        border-radius: 0;
        height: clamp(250px, 40vh, 420px);
        /*height: clamp(250px, 40vh, 380px);*/
    }
}

@media screen and (max-width: 768px) {
    .top-utilities .container {
        flex-direction: column;
        text-align: center;
    }

    .utility-links {
        justify-content: center;
    }

    .menu-toggle {
        display: flex;
    }

    .header-content {
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .logo-area {
        flex: 1 1 auto;
        justify-content: center;
    }
    
    .institution-details {
        min-width: unset;
        flex: 1 1 auto;
    }

    .main-nav {
        position: relative;
    }

    .nav-menu {
        flex-direction: column;
        display: none;
        width: 100%;
        max-height: 80vh;
        overflow-y: auto;
        background-color: #1a3e3e;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
        text-align: left;
    }

    .nav-item > a {
        border-right: none;
        border-bottom: 1px solid #2a4e4e;
        white-space: normal;
        word-wrap: break-word;
        padding: 16px 20px;
    }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        background-color: #e8f0fe;
        border-top: none;
    }

    .nav-item.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding: 14px 30px;
    }

    .dropdown-content a:hover {
        padding-left: 40px;
    }

    /* Adjust spacing for mobile */
    .hero-slider {
        height: 320px;
        max-width: 100%;
        border-radius: 0;
    }

    .slide-content {
        left: 5%;
        right: 5%;
        bottom: 30px;
        max-width: 90%;
    }

    .leadership-grid {
        gap: 20px;
    }

    .commissioner-profile {
        flex-direction: column;
        text-align: center;
    }

    .commissioner-image {
        margin: 0 auto 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .help-grid,
    .publications-grid {
        gap: 15px;
    }

    /* Map Responsive */
    .map-card {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        min-height: 350px;
    }
    
    .map-container iframe {
        min-height: 350px;
    }
    
    .map-info {
        padding: 30px 25px;
    }
    
    .map-direction-btn {
        align-self: center;
        width: 100%;
        justify-content: center;
    }
    
    /* Guidelines Responsive */
    .guidelines-grid {
        grid-template-columns: 1fr;
    }
    
    /* Additional responsive for added styles */
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }
    
    .content {
        flex-direction: column;
    }
}

@media screen and (max-width: 600px) {
    .quick-links-row {
        grid-template-columns: 1fr;
    }
    .guidelines-list li {
        flex-wrap: wrap;
        gap: 8px;
    }
    .guidelines-list li a {
        white-space: normal;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-slider {
        height: 420px;
        /*height: 280px;*/
    }

    .slide-content {
        padding: 16px;
        max-width: 95%;
    }
    
    .slide-content h2 {
        font-size: 18px;
    }
    
    .slide-content p {
        font-size: 13px;
    }

    .utility-links {
        gap: 15px;
        flex-direction: column;
    }

    .commissioner-badge {
        width: 100%;
        text-align: center;
    }

    .footer-section p {
        font-size: 13px;
    }

    .map-container {
        min-height: 250px;
    }
    
    .map-container iframe {
        min-height: 250px;
    }
    
    .map-info {
        padding: 25px 20px;
    }
    
    .map-info-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .map-info-details p {
        font-size: 14px;
    }
}