/* ===== Global Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #100025;
  color: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* ===== Logo ===== */
.logo-img {
  max-width: 100%;
  height: auto;
  margin: 0 auto 90px;
  display: block;
}

/* ===== Navigation ===== */
.nav-container {
  background-color: #27a3c6;
  padding: 15px;
}

.nav-container nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.nav-container nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}

.nav-container nav a:hover {
  color: #ffeb99;
}

/* ===== Services ===== */
.services {
  padding: 60px 20px;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-card {
  position: relative;
  width: 280px;
  height: 390px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  background: #100025;
  color: white;
  transition: transform 0.3s;
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-card-content {
  padding: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  max-height: 50px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.service-card:hover .service-card-content {
  max-height: 500px;
}

.service-card h3 {
  margin: 0 0 5px;
}

.service-card p {
  margin: 0;
  font-size: 14px;
}

/* ===== Hero Section ===== */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: #27a3c6; /* Choose ONE color */
  color: white;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 22px;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* ===== Features ===== */
.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  font-size: 18px;
}

/* ===== Content Box ===== */
.content {
  background-color: #100025;
  color: #fff;
  padding: 40px 20px;
  max-width: 900px;
  margin: 40px auto;
  border-radius: 8px;
  line-height: 1.6;
}

.content h2,
.content h3 {
  color: #fff;
}

.content ul {
  list-style-type: disc;
  padding-left: 20px;
}

/* ===== Footer ===== */
footer {
  background-color: #27a3c6;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
}

/* ===== Subscription ===== */
.subscription {
  text-align: center;
  padding: 40px 20px;
  background-color: #e0e0e0;
}

.subscription-container h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.subscription select {
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-right: 10px;
  min-width: 200px;
}

.subscription button {
  background-color: #4CAF50;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.subscription button:hover {
  background-color: #45a049;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }

  .nav-container nav {
    gap: 10px;
  }

  .content {
    padding: 20px;
  }
}
