:root {
    --primary-color: #0066cc;
    --secondary-color: #004d99;
    --text-color: #333333;
    --background-color: #ffffff;
    --accent-color: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}



.logo img {
    height: 30vw;
    max-height: 350px;
    min-height: 100px;
}


/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}




/* Footer */
footer {
    color: white;
    padding: 2rem 1rem;
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: 100%;
}

.footer-content {
    margin: 0 auto;
    width: 100%;
    font-size: 0.5rem;
    opacity: 0.66;
}
