body{
    font-family: Arial;
    background: #fefbf7;
}

main{
    max-width: 1000px;
    margin: auto;
    background: #fefbf7;
    padding: 15px;
    border-top: 5px #0c3252 solid;
}


.name {
  font-family: sans-serif;
  font-size: 9px;
  text-align: right;
}

.logo{
    float: right;
    height: 50px;
    padding: 10px;
}

.chart{
    max-width: 20%;
    margin: auto;
}

  .content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
  }

  .diagram-frame {
    width: 60%;
    min-width: 300px;
    height: auto; 
  }

  .diagram-text {
    flex: 1;
    max-width: 400px;
  }

.diagram-text {
  flex: 1;
  max-width: 400px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.text-heading {
  font-size: 22px;
  margin-bottom: 10px;
}

.text-paragraph {
  font-size: 16px;
  text-align: justify; 
  margin-bottom: 10px;
}

<style>
  .content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
  }

  .diagram-frame {
    width: 55%;
    height: auto;
    border: none;
  }

  .diagram-text {
    flex: 1;
    max-width: 400px;
    font-family: Arial, sans-serif;
    color: #333;
  }

  .text-heading {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .text-paragraph {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify; 
    margin: 0;
  }

.full-width-image {
  width: 100%;
  height: auto;
  display: block;
}

.text-image-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 40px;
  background-color: #e0e0e0; 
  border-radius: 8px;
color: #333
}
}

.text-column {
  flex: 1;               
  font-family: Arial, sans-serif;
}

.image-column {
  max-width: 300px;      
  flex-shrink: 0;        
  margin: 0;
}

.side-image {
  width: 100%;          
  height: auto;
  display: block;
  border-radius: 0px;    
}

.image-caption {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
  text-align: left;     
}

.image-text-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
}

.image-column-large {
  flex: 2; /* Größerer Anteil für das Bild */
  margin: 0;
}

.side-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0px;
}

.text-column-small {
  flex: 1; /* Kleinerer Anteil für den Text */
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}


.simple-footer {
  background-color: #e0e0e0;
  padding: 60px 40px;
  font-family: sans-serif;
  font-size: 14px;
  color: #333;
}


.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 60px;
}


.footer-text {
  text-align: left;
  flex: 1;
}

.footer-text p {
  margin: 5px 0;
}

.custom-button {
  background-color: #0c3252;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 8px;
  display: inline-block;
  font-family: Arial, sans-serif;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.custom-button:hover {
  background-color: #145a8f;
  transform: translateY(-1px);
}

.custom-button:active {
  background-color: #0a2b45;
  transform: translateY(0);
}
