body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fa;
    color: #222;
}

/* =========================
   Header
========================= */
.site-header {
    width: 100%;
    background: #28b4ad;
    min-height: 92px;
}

.header-container {
    max-width: 1325px;
    margin: 0 auto;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo + Site Name */
.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.brand img {
    width: 50px;
    height: 56px;
    object-fit: contain;
    background: white;
    margin-right: 6px;
}

.brand span {
    color: white;
    font-size: 25px;
    font-weight: 700;
    line-height: 24px;
}

/* Main Menu */
.main-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu>ul {
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-menu ul li {
    position: relative;
}

.main-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: block;
    padding: 34px 0;
    transition: 0.3s;
    white-space: nowrap;
}

.main-menu ul li a:hover,
.main-menu ul li a.active {
    color: #ffd400;
}

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    background: #28b4ad;
    min-width: 190px;
    z-index: 999;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.18);
}

.dropdown-menu li a {
    padding: 12px 16px !important;
    font-size: 14px !important;
    color: white !important;
}

.dropdown-menu li a:hover {
    background: #1d9690;
    color: #ffd400 !important;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* =========================
   Page Content
========================= */
main {
    min-height: 70vh;
}

.page-content {
    min-height: 70vh;
    padding: 60px 50px;
    background: white;
}

.page-content h1 {
    color: #0f3d2e;
    font-size: 36px;
}

/* =========================
   Footer
========================= */
.site-footer {
    background: #0f1d58;
    color: #ffffff;
    padding-top: 60px;
    text-align: left;
}

.site-footer * {
    text-align: left;
}

.footer-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px 40px;
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 1fr 1fr;
    gap: 45px;
    align-items: flex-start;
}

.footer-col {
    text-align: left;
}

.footer-col h2,
.footer-col h3,
.footer-col h4 {
    margin-top: 0;
}

/* Footer About */
.footer-about h2 {
    font-size: 28px;
    line-height: 1.35;
    margin: 18px 0 15px;
    font-weight: 500;
    color: #ffffff;
}

.footer-about p {
    font-size: 16px;
    line-height: 1.9;
    color: #e5e8f5;
    margin: 0;
}

.footer-logo-box {
    background: #ffffff;
    padding: 12px 14px;
    display: inline-block;
    margin-bottom: 8px;
}

.footer-logo-box img {
    max-width: 250px;
    height: auto;
    display: block;
}

/* Footer Important Links */
.footer-links h3,
.footer-contact h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-top: 12px;
    color: #ffffff;
}

.footer-links h3::before,
.footer-contact h3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 280px;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-links ul li a,
.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.75;
}

.footer-links ul li a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
    color: #18d4d1;
}

/* Footer Contact */
.footer-contact p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.8;
    color: #f0f2fa;
}

/* Visitor + Map */
.visitor-box,
.map-box {
    background: #efefef;
    color: #1b2b66;
    margin-bottom: 30px;
    overflow: hidden;
}

.visitor-box h4,
.map-box h4 {
    margin: 0;
    padding: 18px 22px 12px;
    font-size: 18px;
    font-weight: 500;
    color: #1b2b66;
    text-align: left;
}

.visitor-counter {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    padding: 0 22px 18px;
}

.visitor-counter span {
    width: 32px;
    height: 32px;
    background: #1fc5c5;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    border-radius: 3px;
    line-height: 1;
    text-align: center;
}

.map-box iframe {
    display: block;
    width: 100%;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 40px 22px;
    max-width: 1360px;
    margin: 0 auto;
    text-align: left;
}

.footer-bottom p {
    margin: 0;
    font-size: 16px;
    color: #ffffff;
    text-align: left;
}

.footer-bottom a {
    color: #10d6d3;
    text-decoration: none;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .main-menu>ul {
        gap: 18px;
    }
}

@media (max-width: 1000px) {
    .header-container {
        height: auto;
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .main-menu>ul {
        margin-top: 15px;
        flex-wrap: wrap;
        gap: 5px 18px;
    }

    .main-menu ul li a {
        padding: 10px 0;
    }

    .dropdown-menu {
        top: 35px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 0 20px 30px;
    }

    .footer-bottom {
        padding: 16px 20px 20px;
    }

    .footer-about h2 {
        font-size: 24px;
    }

    .page-content {
        padding: 40px 20px;
    }
}
cat >> public/css/style.css <<'CSS'

/* Admin Panel */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
    background: #f4f6f9;
}

.admin-sidebar {
    width: 250px;
    background: #0f1d58;
    color: white;
    padding: 25px 20px;
}

.admin-sidebar h2 {
    margin-top: 0;
    font-size: 24px;
}

.admin-sidebar a,
.admin-sidebar button {
    display: block;
    width: 100%;
    color: white;
    background: transparent;
    border: 0;
    text-align: left;
    text-decoration: none;
    padding: 12px 0;
    font-size: 16px;
    cursor: pointer;
}

.admin-sidebar a:hover,
.admin-sidebar button:hover {
    color: #28b4ad;
}

.admin-content {
    flex: 1;
    padding: 35px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.dashboard-card {
    background: white;
    padding: 25px;
    border-left: 5px solid #28b4ad;
}

.dashboard-card h3 {
    margin-top: 0;
}

.dashboard-card p {
    font-size: 36px;
    margin-bottom: 0;
    color: #0f1d58;
}

.success-message {
    background: #e2fff4;
    color: #087a55;
    padding: 12px;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .admin-wrapper {
        flex-direction: column;
    }

    .admin-sidebar {
        width: auto;
    }

    .dashboard-cards {
        grid-template-columns: 1fr;
    }
}
