:root {
    --partier-color: #FF8888;
    --partier-selected: #ffbdbd;
    --partier-transparent: rgba(255, 136, 136, 0.5);
    --text-dark: #333;
    --text-light: #666;
    --background: #fff;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-size: 400px auto;
    min-height: 100vh;
    padding: 0px;
}

.header {
    background: linear-gradient(135deg, var(--partier-color) 0%, var(--partier-selected) 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 136, 136, 0.1);
    z-index: 1;
}

.logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 136, 136, 0.3);
    position: relative;
    z-index: 2;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
}

.header h1 {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.header p {
    font-size: 1.1rem;
    padding: 5px 20px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
   padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px var(--shadow);
    border-radius: 15px;
    margin-top: -100px;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.main-title {
    text-align: center;
    color: var(--partier-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--partier-selected);
}

.section {
    margin-bottom: 2rem;
    padding: 0.1rem;
}

.section h2 {
    color: var(--partier-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section p,
.section li {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: justify;
}

.section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.section strong {
    color: var(--partier-color);
    font-weight: 400;
}

.highlighted-text {
    background: rgba(255, 189, 189, 0.2);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--partier-color);
    margin: 1rem 0;
    font-style: italic;
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--partier-selected);
}

.footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-top: 1px solid var(--partier-selected);
    color: var(--text-light);
    font-size: 0.9rem;
}
