/* General styles for the About page */
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #d3f1f7, #e6f7f1);
  color: #333;
}

html {
  scroll-behavior: smooth;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: #203a43;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo {
  width: 150px;
  cursor: pointer;
}

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

h1 {
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.about-details section {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-details section:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.about-details h2 {
  font-size: 2rem;
  color: #27ae60;
  margin-bottom: 10px;
}

.about-details p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

footer {
  margin-top: 40px;
  text-align: center;
}

.back-to-home-btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2rem;
  background-color: #27ae60;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.back-to-home-btn:hover {
  background-color: #2ecc71;
}
