body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #f9f9f9;
  color: #333;
}
header {
  background: #262F33;
  color: white;
  padding: 20px;
  text-align: center;
}
header img {
  width: 40%;
  padding: 20px 0px;
}
header h1 {
  margin: 0;
  font-size: 2rem;
}
header p {
  margin: 5px 0 0;
}
main {
  padding: 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}
main h1 {
  font-size: 1.8rem;
}
main h1, main h2 {
  
  color: #2CA7E1;
  margin-bottom: 15px;
}
main p {
  line-height: 1.6;
}
.features {
  margin: 30px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feature {
  background: white;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.feature h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #2CA7E1;
}
footer {
  text-align: center;
  background: #333;
  color: white;
  padding: 15px;
  margin-top: 30px;
}
.button {
  display: inline-block;
  margin: 15px 0;
  padding: 10px 20px;
  background: #2CA7E1;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  transition: background 0.3s;
}
.button:hover {
  background: #1d6e94;
}
a {
  color: #2CA7E1;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.carousel {
  position: relative;
  max-width: 50%;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
  display: block;
}

.carousel-buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.carousel-button {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0px 9px 4px 11px;
  cursor: pointer;
  border-radius: 50%;
}

.carousel-button:disabled {
  background-color: rgba(0, 0, 0, 0.2);
  cursor: not-allowed;
}

@media (min-width: 768px) {
  .carousel-slide img {
    height: auto;
  }
}