/* === GRUNDEINSTELLUNGEN & VARIABLEN === */
:root {
    --primary-color: #ffc107; /* Ein auffälliges Gelb/Gold für "Notfall" */
    --secondary-color: #343a40; /* Dunkles Grau für Kontrast */
    --background-color: #f8f9fa; /* Sehr helles Grau für Sektionen */
    --text-color: #212529; /* Fast Schwarz für Text */
    --white-color: #ffffff;
    --success-color: #28a745;

    --font-family: 'Roboto', sans-serif;
    --header-font-weight: 900;
    --bold-font-weight: 700;
    --base-font-weight: 400;

    --container-width: 1140px;
    
    /* === HIER IST DIE ÄNDERUNG === */
    /* Der Wert wurde von 60px auf 40px reduziert */
    --section-padding: 40px 0; 
}

/* === CSS RESET & BASIS-STILE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
}

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

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: var(--bold-font-weight);
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
    font-weight: var(--header-font-weight);
}

h2 {
    font-size: 2rem;
    text-align: center;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

/* === BUTTON-STILE === */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: var(--bold-font-weight);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

}