/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
}

/* Header / Hero Section */
.hero {
    background-color: #1e3a5f;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Content Sections */
.content-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.content-section h2 {
    margin-bottom: 15px;
    color: #1e3a5f;
}

.contact-list {
    list-style: none;
    font-size: 1.1rem;
}

.contact-list li {
    margin-bottom: 10px;
}

.contact-list a {
    color: #1e3a5f;
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background-color: #1e3a5f;
    color: white;
    font-size: 0.9rem;
}

.logo-placeholder img {
    width: 90%;
    height: auto;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 8px;
}

.footer-links a:hover {
    text-decoration: underline;
}

h2 {
    margin-top: 1.3rem
}

.headline {
    text-align: center;
    padding: 20px 20px;
}

.headline h1 {
    font-size: 3.4rem;
    margin: auto;
    width: 90%    
}

.team-photo {
    width: 85%;
    max-width: 860px
}
