:root {
    --primary-color: #E31E2D; /* Red from Filantropi logo approximation */
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --container-width: 1200px;
    --font-family: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header */
.site-header {
    background-color: var(--bg-color);
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: #333;
}

.logo-text span {
    color: var(--primary-color);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.text-content {
    flex: 1;
    max-width: 500px;
}

.text-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
    letter-spacing: -0.02em;
}

.text-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.illustration {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    /* subtle filter to blend if needed */
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #c91926;
    border-color: #c91926;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid #ddd;
}

.btn-outline:hover {
    border-color: #bbb;
    background-color: #f5f5f5;
}

/* Footer */
.site-footer {
    padding: 24px 0;
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }

    .text-content {
        max-width: 100%;
    }

    .text-content h1 {
        font-size: 2.25rem;
    }
}
