/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hero {
    flex: 1;
    background-color: #000;
    color: #fff;
    padding: 60px 20px;
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 25px;
}

.tagline {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* =========================
   FOOTER SECTION
========================= */

.footer-section {
    background-color: #14ffbc; /* Neon Green */
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    color: #000;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li,
.footer-column p {
    color: #000;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-column i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    background-color: #555;
    text-align: center;
    padding: 18px 20px;
}

.footer-bottom p {
    color: #fff;
    font-size: 0.95rem;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-column i {
        margin-right: 8px;
    }

    .tagline {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    .hero {
        padding: 40px 15px;
    }

    .logo {
        max-width: 220px;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .footer-column h3 {
        font-size: 1.15rem;
    }
}