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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    border-bottom: 3px solid #1b9fa0;
}

.logo-section h1 {
    font-size: 3.5rem;
    color: #001a4d;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.tagline {
    font-size: 1.3rem;
    color: #1b9fa0;
    font-weight: 500;
    letter-spacing: 2px;
}

/* Main Content */
main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message {
    background: white;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 26, 77, 0.1);
    max-width: 700px;
    width: 100%;
}

.message h2 {
    font-size: 2rem;
    color: #001a4d;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.message h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #001a4d, #1b9fa0);
    border-radius: 2px;
}

.statement-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.9;
    text-align: center;
    font-weight: 400;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    header {
        margin-bottom: 40px;
        padding: 30px 0;
    }

    .logo-section h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .message {
        padding: 30px 25px;
    }

    .message h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .statement-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .logo-section h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .message {
        padding: 20px 15px;
    }

    .message h2 {
        font-size: 1.3rem;
    }

    .statement-text {
        font-size: 0.95rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    animation: fadeIn 0.8s ease-out;
}

.message {
    animation: fadeIn 1s ease-out 0.2s both;
}
