* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Overpass', sans-serif;
}

body {
    background-color: #ffffff;
    color: #000;
}

.header {
    padding: 20px 10px;
    background-color: #fff;
    text-align: center;
}

.header img {
    height: 75px;
    max-width: 100%;
}

.banner {
    background-color: #34495e;
    text-align: center;
    padding: 60px 20px;
}

.banner h1 {
    font-size: 2.2em;
    font-weight: 400;
    color: #fff;
}

.banner h2 {
    font-size: 1.8em;
    font-weight: 700;
    margin-top: 10px;
    color: #fff;
}

.banner p {
    font-size: 1.3em;
    margin-top: 15px;
    color: #fff;
}

.button-group {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.button-group a {
    background-color:white; 
    color: #000;
    padding: 12px 20px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

    /* New for same size */
    min-width: 200px;
    text-align: center;
    display: inline-block;
}

.button-group a:hover {
    background-color:#FF6F61; 
    color: #fff;
}



@media (max-width: 768px) {
    .banner h1 {
        font-size: 1.8em;
    }

    .banner h2 {
        font-size: 1.4em;
    }

    .banner p {
        font-size: 1.1em;
    }
}

@media (max-width: 576px) {
    .banner {
        padding: 40px 15px;
    }

    .banner h1 {
        font-size: 1.5em;
    }

    .banner h2 {
        font-size: 1.2em;
    }

    .banner p {
        font-size: 1em;
    }

    .header img {
        height: 60px;
    }

    .button-group a {
        padding: 10px 16px;
        font-size: 0.9em;
    }
}




/* Footer*/
.footer {
     
    width: 100%;
    position: relative;
    bottom: 0;
    background-color: #2c3e50;
    padding: 30px;
    text-align: center;
    font-size: 1.2em;
    color: #ecf0f1;
    margin-top: auto;



}




.footer-container {
    max-width: 1200px;
    margin: 0 auto;
  
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold; 
    transition: color 0.3s ease;
    letter-spacing: 0.10px;
}

.footer-links a:hover {
    color: #FF6F61;
}

.footer .pipe {
    color: #bdc3c7;
}

.footer-copy {
    font-size: 0.85em;
    color: #FF6F61;
}


@media (max-width: 576px) {
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .footer .pipe {
        display: none;
    }

    .footer-copy {
        font-size: 0.75em;
    }
}




