body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(45deg, #1e3c72, #2a5298, #6dd5ed);
    background-size: 400% 400%;
    animation: gradient-animation 15s ease infinite;
    color: #fff;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #ff6b6b;
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255,107,107,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255,107,107,0.6);
}

main {
    padding: 1rem 0.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.counter-section, .form-section {
    background-color: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 3rem;
}

.counter-section h3, .form-section h3 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.counter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#marc-counter {
    font-size: 6rem;
    font-weight: 700;
    color: #ff6b6b;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.1);
}

.counter-label {
    font-size: 1.5rem;
    color: #666;
    margin-top: -1rem;
}

.tagline {
    font-style: italic;
    color: #888;
    margin-top: 1rem;
}

.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #555;
}

input[type="text"], input[type="email"], select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus, input[type="email"]:focus, select:focus {
    outline: none;
    border-color: #1e3c72;
    box-shadow: 0 0 0 3px rgba(30,60,114,0.2);
}

.submit-button {
    background-color: #1e3c72;
    color: #fff;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-button:hover {
    background-color: #2a5298;
    transform: translateY(-3px);
}

#statusMessage {
    margin-top: 1rem;
    font-weight: 700;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: #333;
    color: #fff;
    margin-top: 2rem;
}
footer a{
    text-decoration: none;
    color: #6dd5ed;
}