* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    color: #373435;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.content {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(2, 71, 104, 0.1);
}

.logo-container {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.monogram {
    display: inline-block;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #024768;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.5rem;
    color: #3a4856;
    margin-bottom: 30px;
    font-weight: 500;
}

.message {
    font-size: 1.1rem;
    color: #373435;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #024768 0%, #9dadbc 100%);
    margin: 40px auto;
    border-radius: 2px;
}

.contact-info {
    font-size: 1rem;
    color: #3a4856;
    font-style: italic;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 30px;
}

.contact-email,
.contact-phone {
    font-size: 1.1rem;
    color: #024768;
    margin: 10px 0;
}

.contact-email a,
.contact-phone a {
    color: #024768;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email a:hover,
.contact-phone a:hover {
    color: #9dadbc;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 30px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.25rem;
    }
    
    .message {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 20px;
    }
    
    .title {
        font-size: 1.75rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .logo {
        max-width: 250px;
    }
}

