body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f6f8;
    color: #222;
}

.site-header {
    background-color: white;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.logo-area {
    padding: 25px 20px 15px;
}

.site-logo {
    margin: 0;
    font-size: 36px;
    font-weight: bold;
    color: #0f2d52;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar {
    background-color: #0f2d52;
    padding: 14px 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navbar a:hover {
    color: #d9e6f2;
}

.container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: #0f2d52;
    margin-top: 0;
}

.hero {
    background: linear-gradient(135deg, #0f2d52, #1d4a7a);
    color: white;
    padding: 60px 40px;
    border-radius: 14px;
    margin-bottom: 30px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.hero h1 {
    color: white;
    font-size: 38px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 700px;
}

.btn {
    display: inline-block;
    background-color: white;
    color: #0f2d52;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 18px;
}

.btn:hover {
    background-color: #e8eef5;
}

section {
    background-color: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

p {
    line-height: 1.7;
    font-size: 15px;
}

.team {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.member {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    width: 240px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-top: 4px solid #0f2d52;
}

.member h3 {
    margin-bottom: 8px;
}

form input,
form textarea {
    width: 100%;
    max-width: 550px;
    padding: 12px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
}

form textarea {
    resize: vertical;
}

form button {
    background-color: #0f2d52;
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

form button:hover {
    background-color: #163d6d;
}

footer {
    background-color: #0f2d52;
    color: white;
    text-align: center;
    padding: 18px;
    margin-top: 50px;
}