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

:root {
    --forest-green: #2D5F3F;
    --forest-green-light: #3A7A52;
    --amber: #F59E0B;
    --slate: #64748B;
    --slate-dark: #475569;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-light) 100%);
    padding: 16px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-wrapper a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    display: block;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.main-content {
    flex: 1;
    padding: 64px 0;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--gray-900);
}

.content-section {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 48px;
    margin-bottom: 32px;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.content-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.content-section p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-dark);
    margin-bottom: 16px;
}

.content-section ul {
    list-style: none;
    margin-bottom: 16px;
}

.content-section ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 16px;
    color: var(--slate-dark);
    line-height: 1.6;
}

.content-section ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--forest-green);
    font-weight: 700;
}

.empty-placeholder {
    background: var(--gray-50);
    border: 2px dashed var(--gray-200);
    border-radius: 12px;
    padding: 64px 32px;
    text-align: center;
    color: var(--slate);
    font-size: 16px;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate);
    font-size: 14px;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svg-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px;
}

.text-centered {
    text-align: center;
}

.text-left-align {
    text-align: left;
}

.footer {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    padding: 48px 0 24px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    margin-bottom: 32px;
}

.footer-brand .logo-wrapper {
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--gray-200);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li::before {
    display: none;
}

.footer-column a {
    color: var(--gray-200);
    text-decoration: none;
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--amber);
}

.footer-bottom {
    border-top: 1px solid var(--slate-dark);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-200);
    font-size: 14px;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }

    .content-section {
        padding: 32px 24px;
    }

    .content-with-image {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .image-placeholder {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links {
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 32px 0;
    }

    .page-title {
        font-size: 28px;
    }

    .content-section {
        padding: 24px 16px;
    }
}
