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

body {
    font-family: 'Libre Baskerville', 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.hero-header {
    position: relative;
    min-height: 500px;
    background-image: url('steam-train.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: contain;
    background-color: white;
    padding: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 4px solid #c41e3a;
}

.header-text h1 {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.subtitle {
    color: #f0f0f0;
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

section {
    margin-bottom: 4rem;
}

section h2 {
    font-family: 'Playfair Display', serif;
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #c41e3a;
    padding-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #c41e3a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.mission-card h3 {
    font-family: 'Playfair Display', serif;
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.mission-card p {
    color: #4a5568;
    line-height: 1.6;
}

.contact-section {
    text-align: center;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    padding: 3rem;
    border-radius: 8px;
    color: white;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    color: white;
    border-bottom-color: white;
    letter-spacing: 0.02em;
}

.contact-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.cta-button {
    display: inline-block;
    background-color: #c41e3a;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.cta-button:hover {
    background-color: #9b1830;
    transform: translateY(-2px);
}

.footer {
    background-color: #1a365d;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

.footer p {
    margin-bottom: 0.5rem;
}

.memorial-text {
    font-style: italic;
    color: #a0aec0;
    font-size: 0.9rem;
}

.built-by {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .hero-header {
        min-height: 400px;
    }

    .header-text h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .logo {
        width: 150px;
        height: 150px;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }
}
