:root {
    --primary-color: #00843D;
    --secondary-color: #4472C4;
    --text-color: #333;
    --white: #ffffff;
    --max-width: 1200px;
}

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    height: 100px;
    width: auto;
}

.title-section h1 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 5px;
}

.title-section h2 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: normal;
}

.project-info {
    text-align: right;
}

.erasmus {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project-details p {
    color: var(--secondary-color);
    font-size: 1rem;
}

.slogan-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}

.slogan, .slogan-center {
    font-size: 1.2rem;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.slogan-center {
    color: var(--primary-color);
    font-weight: bold;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.platform-card {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
    border-radius: 5px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.platform-card:hover {
    transform: translateY(-5px);
}

.platform-card h2 {
    font-size: 1.5rem;
}

.platform-link {
    text-decoration: none;
    color: inherit;
}

.platform-link h2 {
    color: inherit;
}

.partner-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.partner-link {
    text-decoration: none;
    color: inherit;
}

footer {
    margin-top: 60px;
}

.disclaimer {
    font-size: 0.9rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.partner-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-logos img {
    height: 60px;
    width: auto;
}

.eu-logo {
    height: 80px;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .project-info {
        text-align: center;
    }

    .slogan-container {
        flex-direction: column;
    }

    .platform-grid {
        grid-template-columns: 1fr;
    }

    .partner-logos {
        justify-content: center;
    }
}
