.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 15px;
}

.image-box {
    width: 45%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: white;
    transition: transform 0.3s ease-in-out;
}

.image-box:hover {
    transform: scale(1.05);
}

.image-box img {
    width: 97%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.image-text {
    background-color: #990000;
    color: white;
    padding: 10px;
    font-size: 14px;
    text-align: center;
}


/* RESPONSIVE DESIGN */
@media screen and (max-width: 1024px) {
    .image-box {
        width: 48%;
    }
}

@media screen and (max-width: 768px) {
    .image-box {
        width: 100%;
        background-color: #990000;
    }
    .h-class{
	font-size:20px;
    }
    
}

@media screen and (max-width: 340px) {
    .image-container {
        padding: 5px; /* Reduce padding */
    }

    .image-box {
        width: 100%;
        padding: 5px; /* Reduce padding */
    }

    .image-text {
        font-size: 12px; /* Smaller text */
        padding: 8px;
    }
}

.ecuador-image-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 20px;
}

.ecuador-image-box {
  width: 45%; /* Default width for larger screens */
  position: relative;
  overflow: hidden;
}

.ecuador-image {
  width: 100%;
  height: auto;
}

.ecuador-image-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px;
}

@media (max-width: 768px) {
  .ecuador-image-box {
    width: 100%; /* Full width for tablets and smaller screens */
  }

  .ecuador-image-text {
    font-size: 14px; /* Adjust text size for smaller screens */
    bottom: 5px;
    left: 5px;
  }
}

@media (max-width: 480px) {
  .ecuador-image-text {
    font-size: 12px; /* Smaller font size for small screens */
    bottom: 3px;
    left: 3px;
  }
}
.africa-container {
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
  padding: 20px 12px 40px;
  border-radius: 4px 4px 8px 8px;
  position: relative;
}

.africa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 32px;
  padding: 5px;
  position: relative;
  z-index: 1;
  background-color: transparent;
}

.africa-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: transparent;
}

.africa-column h3 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 15px;
}

.africa-column h3.highlight {
  color: #6f641b;
}

.africa-column ul {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-weight: 400;
  font-size: 12px;
  color: #3f3d1c;
  list-style-type: none;
  padding-left: 0;        
  margin: 0;
}

.africa-column ul li a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;     
  gap: 8px;
  text-decoration:none;                  
}

.africa-img-wrapper {
  margin-top: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.12);
}

.africa-img-wrapper img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 150px;
  border-radius: 8px;
  transition: none;
}



.africa-summary {
  margin-top: 12px;
  font-size: 0.85rem;
  line-height: 1.3;
}


.africa-summary strong {
  display: block;
  margin-bottom: 4px;
  color: #333;
}

.africa-summary ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  margin-top: 8px;	
}
.africa-summary ul li a {
  text-decoration: none;
  color: inherit;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .africa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .africa-grid {
    grid-template-columns: 1fr;
  }

  .africa-highlight-left,
  .africa-highlight-right {
    display: none;
  }
}

.small-screen {
  display: none;
}

@media (max-width: 768px) {
  .large-screen {
    display: none;
  }
.africa-summary{
  padding-top:30px;
}
  .small-screen {
    display: table-row;
  }

  /* Hide Dauer and Flug ONLY in large-screen rows on mobile */
  .table tbody tr.large-screen td:nth-child(3), 
  .table tbody tr.large-screen td:nth-child(4) {
    display: none;
  }

  /* Ensure all td in .small-screen rows are shown */
  .table tbody tr.small-screen td {
    display: table-cell !important;
  }
}

