:root {
    --primary-gradient: linear-gradient(to right, #006D5B, #00856D);
    --text-color: #1A1A1A;
    --bg-color: #F5F5F5;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 1100px;
    min-height: 100vh;
    padding: 2rem 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.login-button {
    position: absolute;
    top: 20px;
    right: 20px;
}

.login-button a {
    display: inline-block;
    padding: 4px 8px;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
    transition: opacity 0.2s ease;
}

.login-button a:hover {
    opacity: 0.9;
}

.content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
}

.header {
    text-align: center;
    margin-bottom: 2rem;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
}

.stat {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.stat:nth-child(1) {
    animation-delay: 0.2s;
}

.stat:nth-child(2) {
    animation-delay: 0.4s;
}

.stat:nth-child(3) {
    animation-delay: 0.6s;
}

.stat h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.newsletter-box {
    background: white;
    border: 2px solid #006D5B;
    border-radius: 10px;
    padding: 1.2rem 2rem;
    width: auto;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.newsletter-box h2 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #006D5B;
}

.newsletter-box p {
    font-size: 0.9rem;
}

.contact-email {
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin: 0;
}

.contact-email a {
    color: #006D5B;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dotted rgba(0, 109, 91, 0.5);
    padding-bottom: 2px;
    transition: border-bottom 0.2s ease;
}

.contact-email a:hover {
    border-bottom: 1px solid #006D5B;
}

footer {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: auto;
}

#thank-you {
    padding: 0.5rem;
}

#thank-you p {
    font-size: 0.9rem;
    margin: 0;
    color: #fff;
    animation: fadeIn 0.5s ease-in;
}

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

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

@media (max-width: 768px) {
    body {
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .container {
        padding: 2rem 20px;
        min-height: 100vh;
        height: auto;
    }

    .content-section {
        margin: 2rem 0;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .stat h2 {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }
    
    .newsletter-box {
        padding: 1rem 1.5rem;
        width: auto;
        min-width: 280px;
        max-width: 90%;
    }
    
    footer {
        margin-top: auto;
        padding: 1rem 0;
    }
} 