/* ===== FIRST SECTION ===== */
.firstSection {
  height: 300px;
  background-color: #4E7229;
}

.firstSection p {
  width: 95%;
  text-align: center;
  color: white;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
}

/* ===== SECOND SECTION ===== */
.secondSection {
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.secondSection p {
  width: 90vw;
  text-align: center;
  color: #4E7229;
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 40px;
}

.secondSection a {
  margin-bottom: 80px;
}

a img {
  margin: -7px;
  margin-right: 20px;
  height: 40px;
  width: 40px;
}


/* ===== AKTUELLES ===== */
.aktuellesSection {
  height: 700px;
  background-color: #B0BF9B;
  display: flex;
  flex-direction: column;
}

.top {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 20px;
}

.center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bottom {
  display: flex;
  width: 100%;
  height: 400px;
}

.bottom div {
  margin-left: 50px;
  margin-right: 50px;
}

.bottom h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.bottom p {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 1.5;
}

.bottom a {
  margin-top: 20px;
  font-size: 34px;
}

.leftBox {
  width: 55%;
}

.rightBox {
  width: 45%;
}

.rightBox img {
  margin: -7px;
  margin-right: 10px;
  height: 40px;
  width: 40px;                            
}

.rightBox a {
  color: black;
  margin: 0;
  margin-left: 45px;
  font-size: 24px;
  line-height: 1.5;
}

.rightBox h2 {
  margin-bottom: 20px;
}

/* ===== HEADINGS (nur hier genutzt) ===== */
h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
  color: #AF1A23;
  font-weight: 600;
}

h3 {
  font-size: 20px;
  color: #AF1A23;
  margin-top: 10px;
}

/* ... Deine Desktop-Styles ... */

@media (max-width: 768px) {
  .firstSection, .secondSection, .aktuellesSection {
    height: auto; 
    padding: 25px 15px;
  }

  /* Schriften deutlich verkleinert für Handy-Optik */
  .firstSection p, .secondSection p { 
    font-size: 16px; 
    width: 100%;
    line-height: 1.4;
  }

  .secondSection a {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .aktuellesSection h2 { font-size: 18px; }
  .center h1 { font-size: 22px; }
  .center h3 { font-size: 14px; }

  .bottom {
    flex-direction: column;
    height: auto;
    gap: 15px;
  }

  .leftBox, .rightBox {
    width: 100%;
    margin: 0 !important;
    text-align: center;
  }

  .bottom h1 { font-size: 18px; }
  .bottom p { font-size: 15px; }
  
  .bottom a { font-size: 20px; }

  .rightBox a {
    margin-left: 0;
    font-size: 16px;
  }
}