*{
    padding: 0;
    margin: 0;
}

html, body {
    max-width: 100%;
    /* overflow-x: hidden; */
    margin: 0;
    padding: 0;
}

section, footer{
    overflow-x: hidden;
}

body {
    /* font-family: Arial, sans-serif; */
    background-color: black;
    color: white;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

p, li, a, button {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

h1{
    font-size: clamp(2rem, 5vw, 4rem);
}

h2{
    font-size: clamp(1rem, 4vw, 1.5rem);
    color: rgb(0, 132, 255);
}

p{
    font-size: clamp(1rem, 3vw, 1.5rem);
}

button{
    background-color: rgb(0, 132, 255);
    color: rgb(41, 41, 41);
    border: none;
    padding: 15px 30px;
    font-size: 20px;
    border-radius: 40px;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
}

button:hover {
    background-color: rgb(0, 102, 204);
}

@media (min-width: 751px) and (max-width: 1200px) {
    h1 {
        font-size: 2.5rem; /* Festwert für iPad statt Clamp-Chaos */
    }
    
    h2 {
        font-size: 1.5rem; /* Vorher 0.8rem - viel zu klein! */
    }
    
    p {
        font-size: 1.1rem; /* Vorher 0.5rem - das war der Fehler */
    }
    
    button {
        padding: 12px 25px;
        font-size: 18px;
    }

    /* Falls du das Grid/Management nutzt: */
    .about-grid, .management-box {
        flex-direction: column; /* Auf iPad lieber untereinander */
        width: 100%;
    }

    input, select, textarea {
    font-size: 1rem; 

    }
}