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

body {
    font-family: 'STIX Two Text', serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #025886 0%, #034467 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 60px 40px;
    max-width: 700px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #667eea;
    font-weight: 700;
}

.subtitle {
    font-size: 1.5em;
    color: #666;
    margin-bottom: 30px;
    font-weight: 300;
}

.description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.info-box {
    background: #f8f9fa;
    border-left: 4px solid #034467;
    padding: 20px;
    margin: 30px 0;
    text-align: left;
    border-radius: 4px;
}

.info-box h2 {
    color: #034467;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.info-box p {
    color: #666;
    font-size: 0.95em;
}

.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: #999;
    font-size: 0.9em;
}

.footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    text-decoration: underline;
}

.icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    .subtitle {
        font-size: 1.2em;
    }

    .container {
        padding: 40px 30px;
    }
}
