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

:root {
    --primary: #1F7A5A;
    --primary-dark: #165A43;
    --secondary: #2B2B2B;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --white: #FFFFFF;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.logo-image {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.logo {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.main-content {
    background: linear-gradient(135deg, #2B2B2B 0%, #1F7A5A 100%);
    padding: 3rem;
    border-radius: 16px;
    color: var(--white);
    margin-bottom: 2rem;
}

.main-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.main-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.info-section {
    margin-top: 3rem;
    padding: 2rem;
    background: #F8F9FA;
    border-radius: 12px;
}

.info-section h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.info-section p {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #DEE2E6;
}

.contact a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.contact a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    margin-top: 1.5rem;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 122, 90, 0.3);
}

footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #DEE2E6;
    color: var(--text-light);
    font-size: 0.95rem;
}

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

    .logo {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .main-content {
        padding: 2rem;
    }

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

    .main-content p {
        font-size: 1rem;
    }
}
