/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: white;
}

.insights-section {
  text-align: center;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.insights-section h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #333;
}

.insights-section .highlight {
  color: #ff4500;
}

.insights-section p {
  font-size: 1em;
  color: #666;
  margin-bottom: 30px;
}

.insights-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.insight-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.insight-card .image {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
}

.insight-card .image .icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  font-size: 1.5em;
  padding: 5px;
  border-radius: 50%;
}

.insight-card .info {
  padding: 15px;
  text-align: left;
}

#img2 {
  margin-top: 30px;
}

.insight-card .info .date {
  color: #ff4500;
  font-size: 0.9em;
  margin-bottom: 5px;
}

.insight-card .info h2 {
  font-size: 1.1em;
  margin: 0;
  color: #333;
  font-weight: normal;
}

.view-all {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: none;
  border: 2px solid #ff4500;
  color: #ff4500;
  font-size: 1em;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.view-all:hover {
  background: #ff4500;
  color: #fff;
}

/* Responsive design adjustments */
@media (max-width: 768px) {
  .insights-container {
    justify-content: center;
    gap: 15px;
  }

  .insight-card {
    width: 280px;
  }

  .insight-card .image {
    height: 250px;
  }

  .insight-card .info {
    padding: 12px;
  }

  .insight-card .info h2 {
    font-size: 1em;
  }

  .view-all {
    font-size: 0.9em;
    padding: 8px 15px;
  }

  .insights-section h1 {
    font-size: 2em;
  }

  .insights-section p {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .insights-section {
    padding: 0 15px;
  }

  .insights-container {
    gap: 10px;
  }

  .insight-card {
    width: 100%;
    max-width: 280px;
  }

  .insight-card .image {
    height: 220px;
  }

  .insight-card .info {
    padding: 10px;
  }

  .insight-card .info h2 {
    font-size: 0.95em;
  }

  .view-all {
    font-size: 0.8em;
    padding: 6px 12px;
  }

  .insights-section h1 {
    font-size: 1.6em;
  }

  .insights-section p {
    font-size: 0.8em;
  }
}
