body {
    font-family: sans-serif;
    padding-top: 240px; /* Header + Navbar Höhe */
    padding-bottom: 60px; /* Footer Höhe */
}

/* SECTION: START */
.start-section {
    background-color: #e7e6e6;
    padding: 60px 20px;
    display: grid;
    place-items: center;
}

.start-container {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.start-section h2 {
    font-size: 2.2rem;
    color:green;
    text-shadow: 1px 1px black;
}

.start-texts h3 {
    font-size: 1.2rem;
    color: #444;
}

.start-image img {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

.start-note p {
    font-size: 2rem;
    font-weight: bold;
    color: maroon;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .start-section h2 {
        font-size: 1.8rem;
    }

    .start-texts h3 {
        font-size: 1rem;
    }

    .start-note p {
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .start-section {
        padding: 40px 10px;
    }

    .start-section h2 {
        font-size: 1rem;
    }

    .start-texts h3 {
        font-size: 0.9rem;
    }

    .start-note p {
        font-size: 0.5rem;
    }
}

@media (max-width: 340px) {
    .start-section {
        padding: 40px 10px;
    }

    .start-section h2 {
        font-size: 0.7rem;
    }

    .start-texts h3 {
        font-size: 0.4rem;
    }

    .start-note p {
        font-size: 0.5rem;
    }
}