/* FOOTER */

footer {
    
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
}

/* BOTTOM MENU */

.footer-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 20px;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: 0.3s;
}

.footer-menu a:hover {
    color: #ffd166;
}

/* LINE */

.footer-line {
    width: 80%;
    height: 1px;
    
    margin: 0 auto 20px;
}

/* MOBILE */

@media (max-width: 600px) {

    .footer-menu {
        flex-direction: column;
        gap: 12px;
    }

    .footer-line {
        width: 100%;
    }

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background: #f5f7fb;
    line-height: 1.6;
}

/* HEADER */

header {
    background: #123c69;
    color: white;
    padding: 18px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: bold;
}

nav a:hover {
    color: #ffd166;
}

/* HOME HERO */

.hero {
    height: 500px;

    background: 
	      linear-gradient(rgba(18,60,105,0.7),
        rgba(18,60,105,0.7)),
        url("images/9999.png");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 30px;
}

.btn {
    background: #ffd166;
    color: #123c69;
    padding: 13px 28px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
}

/* SECTIONS */

.welcome,
.content {
    max-width: 1100px;
    margin: auto;
    padding: 70px 25px;
}

.welcome {
    text-align: center;
}

h2 {
    color: #123c69;
    margin-bottom: 20px;
}

/* CARDS */

.cards {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.card h3 {
    color: #123c69;
    margin-bottom: 12px;
}

/* PAGE TITLE */

.page-title {
    background: #123c69;
    color: white;
    text-align: center;
    padding: 70px 20px;
}

.page-title h1 {
    font-size: 45px;
}

.page-title p {
    margin-top: 10px;
}

/* TABLE */

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    margin-top: 25px;
}

th,
td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background: #123c69;
    color: white;
}

/* CONTACT */

.contact {
    max-width: 1100px;
    margin: auto;
    padding: 70px 25px;
    display: flex;
    gap: 50px;
}

.contact-info,
.form {
    flex: 1;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info p {
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    padding: 13px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

button {
    background: #123c69;
    color: white;
    border: none;
    padding: 13px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #0b2b4d;
}

/* FOOTER */

footer {
    background: #123c69;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 30px;
}

/* MOBILE */

@media (max-width: 768px) {

    header {
        flex-direction: column;
        gap: 15px;
    }

    nav a {
        margin: 5px;
        display: inline-block;
    }

    .hero h1 {
        font-size: 35px;
    }

    .contact {
        flex-direction: column;
    }

    .cards {
        flex-direction: column;
    }
}