/* Reset and Base Styles */
* {
    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: #123145;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Header/Logo */
header {
    margin-bottom: 40px;
}

.logo {
    max-width: 500px;
    width: 100%;
    height: auto;
}

/* Main Content */
main {
    margin-bottom: 60px;
    text-align: center;
}

.description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 700px;
    text-align: left;
}

.email {
    display: inline-block;
    font-size: 1.125rem;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #ffffff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.email:hover {
    background-color: #ffffff;
    color: #123145;
}

/* Footer */
footer {
    margin-top: auto;
    padding-top: 40px;
    color: #c0c9d6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }
    
    .logo {
        max-width: 100%;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .email {
        font-size: 1rem;
    }
}
