* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

/* Header */
.header {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    background-image: url('../images/ewald-background.webp');
}

.header::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.title {
    font-size: 3rem;
    position: relative;
    text-transform: capitalize;
    z-index: 1;
}

.short-description {
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Section */
.section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2d8a47;
    margin-bottom: 32px;

    &:after {
        content: '';
        display: block;
        width: 60px;
        height: 6px;
        border-radius: 16px;
        background-color: #2d8a47;
        margin-top: 12px;
    }
}

/* Content Card */
.content-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.eu-badge {
    float: right;
    margin-left: 24px;
    margin-bottom: 16px;
}

.eu-flag {
    width: 160px;
    padding: 0 6px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.text:last-child {
    margin-bottom: 0;
}

/* Objectives Grid */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.objective-item {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.objective-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Links Section */
.links-section {
    margin-top: 60px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    padding: 28px 32px;
    border-radius: 12px;
    text-decoration: none;
    color: #1a1a1a;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.link-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2d8a47;
}

.objective-icon {
    margin-bottom: 16px;
}

.icon-image {
    width: 32px;
    height: 32px;
    vertical-align: middle;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .title {
        font-size: 2.5rem;
        letter-spacing: 0.05em;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }

    .header {
        padding: 80px 20px 60px;
    }
    
    .container {
        padding: 40px 16px;
    }

    .section {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }
    
    .content-card {
        padding: 24px;
    }

    .eu-badge {
        float: none;
        text-align: center;
        margin: 0 0 24px 0;
    }

    .eu-flag {
        width: 140px;
    }
    
    .text {
        font-size: 1rem;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .links-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .link-card {
        padding: 20px 24px;
    }

    .link-text {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.4rem;
    }
}