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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #1a2b4a;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 120px;
}

.container {
    max-width: 600px;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
}

h1 {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 24px;
    color: #1a2b4a;
}

.description {
    font-size: 22px;
    font-weight: 400;
    color: #4a5568;
    margin-bottom: 40px;
}

.try-link {
    font-size: 20px;
    font-weight: 400;
    color: #1a2b4a;
    margin-bottom: 100px;
}

.try-link a {
    color: #1a2b4a;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.try-link a:hover {
    opacity: 0.6;
}

footer {
    margin-top: 60px;
}

.contact-label {
    font-size: 18px;
    color: #1a2b4a;
    margin-bottom: 12px;
}

.contact-email {
    font-size: 18px;
    color: #1a2b4a;
    margin-bottom: 6px;
}

footer a {
    color: #1a2b4a;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

footer a:hover {
    opacity: 0.6;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }
    
    .container {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .description {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .try-link {
        font-size: 18px;
        margin-bottom: 70px;
    }
    
    .contact-label,
    .contact-email {
        font-size: 16px;
    }
}

