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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #D4E8CF 0%, #B8D4AD 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3D4A3E;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.content {
    background: #FFF8F0;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(107, 158, 92, 0.2);
    text-align: center;
    max-width: 600px;
    width: 100%;
    animation: fadeIn 0.8s ease-in;
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.logo h1 {
    font-size: 2.5rem;
    color: #257c0f;
    font-weight: 600;
}

.content h2 {
    font-size: 2rem;
    color: #6B9E5C;
    margin-bottom: 1rem;
    font-weight: 500;
}

.tagline {
    font-size: 1.25rem;
    color: #5C6B5D;
    margin-bottom: 1rem;
    font-weight: 500;
}

.description {
    font-size: 1rem;
    color: #7A8A7B;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-links a {
    color: #6B9E5C;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    color: #87A878;
    transform: scale(1.2);
}

footer {
    margin-top: 2rem;
    color: #3D4A3E;
    text-align: center;
    font-size: 0.9rem;
}

footer p {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .content {
        padding: 2rem 1.5rem;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .content h2 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .logo img {
        width: 60px;
        height: 60px;
    }
}
