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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #3f4447;
    padding: 0;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    margin-bottom: 40px;
    text-align: center;
}

.logo {
    width: 150px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    max-width: 200px;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #3f4447;
    font-weight: 700;
}

.subtitle {
    font-size: 1.4rem;
    color: #518D6B;
    margin-bottom: 30px;
    font-weight: 600;
}

.description {
    font-size: 1.1rem;
    color: #3f4447;
    line-height: 1.8;
    margin-bottom: 50px;
    text-align: center;
    max-width: 600px;
}

.coming-soon {
    font-size: 1.6rem;
    color: #518D6B;
    font-weight: 600;
    margin-bottom: 50px;
    padding: 20px;
    background: rgba(168, 184, 160, 0.2);
    border-radius: 15px;
    border-left: 5px solid #518D6B;
}

.contact-form-section {
    width: 100%;
    max-width: 600px;
    margin-bottom: 60px;
}

.contact-form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #3f4447;
    text-align: center;
    font-weight: 700;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(63, 68, 71, 0.15);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #3f4447;
    font-weight: 600;
    font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #a8b8a0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: white;
    color: #3f4447;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #518D6B;
    box-shadow: 0 0 0 3px rgba(81, 141, 107, 0.1);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

button {
    width: 100%;
    padding: 18px 30px;
    background: #518D6B;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(81, 141, 107, 0.4);
}

button:active {
    transform: translateY(0);
}

.message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    display: none;
    text-align: center;
    font-weight: 500;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.social-media {
    text-align: center;
    margin-bottom: 40px;
}

.social-media h3 {
    font-size: 1.2rem;
    color: #3f4447;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #518D6B;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: #a8b8a0;
    box-shadow: 0 5px 15px rgba(81, 141, 107, 0.3);
}

footer {
    background: rgba(63, 68, 71, 0.9);
    color: white;
    text-align: center;
    padding: 25px 20px;
    margin-top: auto;
    width: 100%;
}

footer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

footer a {
    color: #a8c0d0;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .main-content {
        padding: 30px 15px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .description {
        font-size: 1rem;
    }

    .coming-soon {
        font-size: 1.3rem;
        padding: 15px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-form-section h2 {
        font-size: 1.5rem;
    }

    .logo {
        width: 120px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .contact-form-section h2 {
        font-size: 1.3rem;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}
