* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #fff;
}

/* TOP */
.top-bar {
    background: #000;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 12px 40px;
    align-items: center;
}

.logo img {
    height: 40px;
}

.sign-in {
    color: #f5c400;
    text-decoration: none;
    font-weight: bold;
}

/* MENU */
.menu {
    background: #e0e0e0;
}

.menu-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    padding: 14px;
    flex-wrap: wrap;
}

.menu-list a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

/* HERO */
.hero img {
    width: 100%;
}

/* HIGHLIGHT */
.highlight {
    background: #f5c400;
    padding: 15px;
}

.highlight-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.highlight-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 18px;
}

/* ADS */

/* Top Banner Advertisement */
.google-ad {
    display: flex;
    justify-content: center;
    margin: 30px auto;
}

.google-ad img {
    width: 100%;
    max-width: 728px;   /* Max width for leaderboard style */
    height: auto;
    border-radius: 8px;
}

/* Sidebar Ads */
.sidebar .side-ad {
    border: none;          /* remove border for image ads */
    padding: 0;
    margin-bottom: 20px;
}

.sidebar .side-ad img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* MAIN BODY */
.main-body {
    display: flex;
    gap: 30px;
    padding: 20px 40px;
}

.content {
    width: 75%;
}

.sidebar {
    width: 25%;
}

/* CONTENT HEADER */
.content-header {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* ABOUT CARD */
.about-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.about-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.image-title {
    background: #000;
    color: white;
    padding: 10px 15px;
    font-size: 15px;
}

.about-content-row {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
}

.about-description {
    font-size: 18px;
    font-weight: bold;
    flex: 1;
}

.about-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 6px;
}

.below-paragraph {
    margin-top: 30px;
    font-size: 18px;
}

/* FOOTER WRAPPER */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-container.extra-padding {
    padding-left: 150px;
    padding-right: 150px;
}

/* FOOTER HIGHLIGHT */
.footer-highlight {
    background: #f5c400;
    text-align: center;
    padding: 35px 0;
}

.footer-highlight h2 {
    font-weight: bold;
    font-size: 26px;
    margin-bottom: 8px;
}

.footer-highlight p {
    margin-bottom: 20px;
}

.feature-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 120px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #000;
    margin-bottom: 8px;
}

/* MAIN FOOTER */
.main-footer {
    background: #000;
    color: white;
    padding: 40px 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 25px;
}

.footer-logo img {
    height: 50px;
    padding-left: 20px;
}

.social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-right: 20px;
}

.connect-text {
    font-weight: bold;
    font-size: 18px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #f5c400;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: black;
    font-size: 18px;
    text-decoration: none;
}

hr {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-menus {
    display: flex;
    gap: 40px;
    order: -1;
}

.footer-menus ul {
    list-style: none;
}

.footer-menus a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-ad img {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
    padding: 15px;
    border-radius: 6px;
}

/* ========================= */
/* RESPONSIVE IMPROVEMENTS   */
/* ========================= */

@media (max-width: 992px) {
    .main-body {
        flex-direction: column;
        padding: 20px;
    }

    .content,
    .sidebar {
        width: 100%;
    }

    .sidebar {
        margin-top: 20px;
    }

    .about-content-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-btn {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-menus {
        order: 0;
    }

    .footer-container.extra-padding {
        padding-left: 20px;
        padding-right: 20px;
    }

    .google-ad img {
        max-width: 90%; /* Top banner responsive */
    }
}

@media (max-width: 600px) {
    .menu-list {
        flex-direction: column;
        gap: 10px;
    }

    .highlight-content {
        flex-direction: column;
        text-align: center;
    }

    .content-header {
        font-size: 26px;
    }

    .about-card img {
        height: 200px;
    }

    .google-ad img {
        max-width: 95%;
    }
}
