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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #fff1de;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header Styles */
header {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 50px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Main Content */
main {
    flex: 1;
}

.content-section {
    background: white;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.message-box {
    margin-bottom: 0;
}

.message-box p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
    margin: 30px 0;
}

.contact-info {
    margin-top: 0;
    font-style: normal;
}

.contact-info p {
    color: #555;
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 10px;
}

.contact-info strong {
    color: #333;
    font-weight: 600;
}

.contact-info a {
    color: #2c5530;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    color: #666;
    font-size: 0.9rem;
    margin-top: auto;
}

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

    header {
        margin-bottom: 40px;
    }

    .logo {
        max-width: 200px;
    }

    .content-section {
        padding: 30px 25px;
    }

    .message-box p {
        font-size: 1rem;
    }

    .divider {
        margin: 25px 0;
    }

    .contact-info p {
        font-size: 0.95rem;
    }
}

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

    .logo {
        max-width: 180px;
    }

    .content-section {
        padding: 25px 20px;
    }

    .divider {
        margin: 20px 0;
    }
}
