/* General Reset */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0a4528, #10c64f);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 600px;
    background: #ffffff;
    color: #0a4528;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 2rem;
    animation: fadeIn 1s ease-out;
}

.header h1 {
    font-size: 3rem;
    margin: 0;
    color: #10c64f;
    border-bottom: 2px solid #10c64f;
    padding-bottom: 0.5rem;
}

.content .tagline {
    font-size: 1.2rem;
    margin: 1rem 0;
    color: #0a4528;
}

.content .contact {
    font-size: 1rem;
    font-weight: 500;
    margin: 1rem 0;
    color: #0a4528;
}

.content .contact a {
    color: #10c64f;
    text-decoration: none;
    font-weight: bold;
}

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

/* Smooth fade-in effect */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
