.welcome-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 50px;
  font-weight: 700;
}

.welcome-content {
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 400px;
}

.welcome-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.welcome-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.read-more-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #d81b0d;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.read-more-link:hover {
  background-color: #ffd30d;
}

.principal-photo {
  flex: 0 0 350px;
}

.principal-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .welcome-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .principal-photo {
    flex: none;
    max-width: 300px;
    order: -1;
  }
  
  .principal-photo img {
    height: 300px;
  }
  
  .section-heading {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}