/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0px;
  line-height: 1.6;
  color: #333;
  background: url("../images/background2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  -webkit-backdrop-filter: ;
  backdrop-filter: blur(4px);
}

.container {
  width: 900px;
  margin: 20px auto;
  border-left: 3px solid #eaeaea;
  border-bottom: 3px solid #eaeaea;
  background-color: #fff;
  border-radius: 8px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  border-radius: 8px;
}

header .logo {
  font-weight: bold;
  font-size: 1.2rem;
}

header nav ul {
  display: flex;
  border: 3px solid #000;
  border-radius: 5px;
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
}

header nav ul li a {
  flex: 1;
  text-align: center;
  padding: 10px 20px;
  text-decoration: none;
  color: black;
  border: 3px solid #000000;
  background: white;
  font-size: 16px;
  transition: background 0.5s ease;
}

header nav ul li a:last-child {
  border-right: none;
}

header nav ul li a:hover {
  background: #000;
  color: #fff;
}

.banner {
  position: relative;
  overflow: hidden;
  height: 60vh;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.slider img {
  width: 100%;
  height: 60vh;
  flex-shrink: 0;
  animation: slide 12s infinite;
}

.head {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #ffffff;
}

.head h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.head p {
  font-size: 1rem;
  color: #666;
}

.content {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  gap: 2rem;
}

.content .left {
  flex: 1;
}

.content .image-placeholder img {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  background-color: #f0f0f0;
}

.content blockquote {
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 4px solid #007bff;
}

.content blockquote p {
  font-style: italic;
  padding-bottom: 20px;
}

.content blockquote img {
  width: 40px;
  margin-right: 10px;
}

.content blockquote .user {
  width: 200px;
  display: inline-block;
  font-weight: bold;
  margin-top: ;
}

.content blockquote .user small {
  display: block;
  font-style: italic;
  color: #666;
}

.content .right {
  max-width: 38%;
  flex: 1;
  background-color: #e9ecef;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.content .right h2 {
  padding: 20px;
  font-size: 20px;
  margin-bottom: 1rem;
  padding-left: 0;
  padding-bottom: 0;
}

.content .right p {
  font-size: 13px;
  margin-bottom: 1rem;
  color: grey;
  padding-bottom: 20px;
}

.content .right form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content .right form label {
  font-size: 0.9rem;
}

.content .right form input,
.content .right form select,
.content .right form button {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.content .right form button {
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}

.content .right form button:hover {
  background-color: #0056b3;
}

.features {
  padding: 2rem;
  text-align: left;
}

.features p {
  margin-bottom: 1rem;
  font-size: 14px;
}

.features ul {
  list-style: none;
  padding: 0;
}

.features ul li {
  font-size: 11px;
  margin-bottom: 1rem;
}

.packages header {
  background-color: #eaeaea;
}

.packages header h1 {
  margin: 20px auto;
}

.packages-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 80%;
  max-width: 900px;
  margin: 30px auto;
  border: 1px solid #eaeaea;
  border-radius: 8px;
}

.packages-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.packages-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.packages-item img {
  width: 100%;
  height: 110px;
}

.packages-container h3 {
  font-size: 18px;
  margin: 10px 0;
  font-weight: bold;
  color: #333;
}

.packages-container p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.contact {
  border: 2px solid #eaeaea;
  text-align: center;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  max-width: 900px;
}

.contact h1 {
  margin: 40px auto 10px;
  text-align: center;
  font-size: 35px;
}

.contact p {
  font-size: 12px;
  width: 400px;
  margin: 0px auto 30px;
  text-align: center;
}

.contact .call {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  margin: 10px auto;
}

.container .contact .call:hover {
  background-color: #555;
}

.footer {
  text-align: center;
  padding: 20px;
  background-color: #ffffff;
  max-width: 900px;
  border-radius: 8px;
}

.footer .logo {
  display: inline-block;
  margin: 20px auto;
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: bold;
}

.footer a {
  text-decoration: none;
  margin-right: 5px;
  font-size: 12px;
  color: #b7b7b7;
}

.footer a:hover {
  color: #0d92f4;
}

.footer p {
  margin-bottom: 20px;
  font-size: 12px;
  color: #b7b7b7;
}

/* Responsiveness */
@media (max-width: 1200px) {
  .container {
    width: 90%;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  header nav ul {
    flex-direction: column;
    width: 100%;
  }

  header nav ul li a {
    display: block;
    border: 1px solid #000;
    text-align: left;
    padding: 1px;
  }

  .banner {
    height: 40vh;
  }

  .slider img {
    height: 40vh;
  }

  .content {
    flex-direction: column;
  }

  .content .right {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .head h1 {
    font-size: 1.5rem;
  }

  .head p {
    font-size: 0.9rem;
  }

  .packages-container {
    grid-template-columns: 1fr;
  }

  .packages-item img {
    height: auto;
  }

  .footer .logo {
    font-size: 16px;
  }

  .footer p {
    font-size: 10px;
  }

  .footer a {
    font-size: 10px;
  }

  .contact p {
    width: 100%;
  }
}

@media (max-width: 375px) {
  header .logo {
    font-size: 1rem;
  }

  header nav ul li a {
    font-size: 14px;
  }

  .content .right h2 {
    font-size: 18px;
  }

  .contact h1 {
    font-size: 28px;
  }

  .contact p {
    font-size: 10px;
  }
}
