/* zahlungsversand.css – Stylishe Boxen für die Seite Zahlungsoptionen & Versand */

.zahlungs-container {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 40px;
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
  }
  
  .zahlungs-header {
    font-size: 28px;
    font-weight: bold;
    color: #007c40;
    text-align: center;
    border-bottom: 2px solid #00a052;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  
  .zahlungs-text {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 30px;
  }
  
  /* Liste der Zahlungsmethoden */
  .zahlungs-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }
  .zahlungs-list li {
    background-color: #e6f9e6;
    border: 1px solid #b3e6b3;
    border-radius: 5px;
    padding: 12px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #007c40;
    transition: background-color 0.3s ease;
  }
  .zahlungs-list li:hover {
    background-color: #d0f0d0;
  }
  
  /* Liste der Versandoptionen */
  .versand-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }
  .versand-list li {
    background-color: #e6f9e6;
    border: 1px solid #b3e6b3;
    border-radius: 5px;
    padding: 12px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #007c40;
    transition: background-color 0.3s ease;
  }
  .versand-list li:hover {
    background-color: #d0f0d0;
  }
  
  /* Überschriften für Abschnitte */
  .zahlungs-section {
    margin-top: 40px;
  }
  .zahlungs-section h3 {
    font-size: 22px;
    color: #007c40;
    border-bottom: 1px solid #00a052;
    padding-bottom: 8px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  /* Buttons (falls benötigt) */
  .zahlungs-btn {
    background-color: #00a052;
    color: #fff;
    padding: 14px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  .zahlungs-btn:hover {
    background-color: #007c40;
  }
  
  /* Responsive Anpassungen */
  @media (max-width: 600px) {
    .zahlungs-container {
      padding: 20px;
      margin: 20px;
    }
    .zahlungs-header {
      font-size: 24px;
    }
    .zahlungs-text,
    .zahlungs-list li,
    .versand-list li,
    .zahlungs-section h3 {
      font-size: 14px;
    }
  }
  