* {
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

header {
    /* display: flex;
    justify-content: space-between;
    z-index: 1000;
    padding: 20px;
    color: #1e1e1e; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 30px 20px;
    color: white;
    box-sizing: border-box;
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

header nav a {
    text-decoration: none;
    /* color: white; */
    margin: 0 15px;
}

header nav .links a {
    white-space: nowrap;
}

header .logo {
    text-decoration: none;
    /* color: white; */
    font-size: 1.2em;
}


footer {
    background: #064273;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #064273;
    padding: 40px 10px;
    line-height: 1.4em;
}

footer a {
    color: #FFF;
    text-decoration: none;
}

footer .contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

footer .contact h3 {
    margin-bottom: 10px;
    text-align: center;
}


h1 {
    font-size: clamp(3em, 3.2vw, 4em);
}

h2 {
    font-size: clamp(2em, 2vw, 3em);
}

h3 {
    font-size: clamp(1.3em, 1.8vw, 2em);
}

p {
    font-size: 1.2rem;
}

/* button {
    padding: 8px 12px;
    border: none;
    width: 100%;
    cursor: pointer;
    background: #283442;
    color: #fafeff;
    font-size: 1.1em;
} */

button,
.button {
    margin-top: 10px;
    width: 100%;
    padding: 12px;
    background: #283442;
    color: #fafeff;
    font-size: 1.1em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
    text-decoration: none;
}

textarea {
    padding: 8px 12px;
    border: 1px solid #064273;
    font-size: 1em;
}

input {
    padding: 12px;
    border: 1px solid #064273;
    font-size: 1em;
}

.hero {
    height: 100vh;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 45px 30px;
}

.container h2 {
    margin-bottom: 30px;
    text-align: center;
}

.container p {
    max-width: 900px;
    margin-bottom: 30px;
}

.container p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}


/* TAGLINE SECTION */
.tagline {
    background: #f0f8ff;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.tagline div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tagline img {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.tagline p {
    max-width: 560px;
    color: #222;
}


/* RESPONSIVE: Tagline horizontal on desktop */
@media screen and (min-width: 768px) {
    .tagline {
        flex-direction: row;
        justify-content: center;
        text-align: left;
    }

    .tagline p {
        margin-left: 30px;
    }
}