:root {
    --primary-color: #00A651;
    --text-color: #333;
    --background-color: #fff;
}

* {
    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: var(--text-color);
}

header {
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
}

.social-link:hover {
    color: var(--primary-color);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.coming-soon {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

h1 {
    font-size: 2.5rem;
    margin: 1rem 0 2rem;
    line-height: 1.2;
}

.countdown {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.countdown-item {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.countdown-item span:first-child {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
}

.notification-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 5%;
    text-align: center;
}

.notification-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 8px;
}

.notification-form h2 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.input-group {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

input[type="email"] {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    opacity: 0.9;
}

.form-note {
    color: #666;
    font-size: 0.9rem;
}

.illustration img {
    max-width: 100%;
    height: auto;
}

footer {
    background: #f5f5f5;
    padding: 1.5rem 5%;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }

    .social-links {
        flex-direction: column;
        gap: 1rem;
        position: fixed;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.9);
        padding: 1rem;
        border-radius: 30px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .illustration {
        order: -1;
    }

    .notification-form {
        padding: 1.5rem;
    }

    .input-group {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Additional breakpoint for smaller phones */
@media (max-width: 420px) {
    .social-links {
        right: 0.5rem;
        padding: 0.8rem;
    }

    .social-link {
        font-size: 1rem;
    }
}

.form-message {
    margin-top: 10px;
    text-align: center;
    font-size: 0.9rem;
}

.recaptcha-container {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

.input-group {
    margin-bottom: 1rem;
}

button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
} 