* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
}

.logo {
  background: #000;
  text-align: center;
  padding: 10px;
}

.logo img {
  max-height: 300px;
  width: auto;
}

.top-banner,
.main-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 15px;
  font-size: 13px;
}

.top-banner {
  background: #e8f0fe;
  color: #000066;
  text-align: center;
}

.main-header {
  background-color: #d70018;
  color: white;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.btn,
.location,
.contact,
.icons div {
  background-color: #a60010;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 13px;
  white-space: nowrap;
}

.search {
  flex: 1;
  min-width: 180px;
  padding: 6px 12px;
  border-radius: 20px;
  border: none;
}

.icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
}

.icons div {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.icons div:hover {
  background-color: #ff6600;
  transform: scale(1.05);
}

.home-btn {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
}

.home-btn i {
  font-size: 16px;
}

.home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
}

#form5,
.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.slider {
  flex: 1 1 600px;
  max-width: 600px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 10px 10px 15px 5px rgba(0, 0, 0, 0.3);
}

.slides {
  display: flex;
  width: calc(600px * 7);
  transition: margin-left 1s;
}

.slide {
  width: 600px;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.box2 {
  flex: 1 1 600px;
  max-width: 800px;
  background: linear-gradient(
    135deg,
    rgb(239, 244, 252),
    rgba(234, 235, 234, 0.88)
  );
  padding: 40px;
  border-radius: 15px;
  font-family: "Segoe UI", sans-serif;
  box-shadow: 10px 10px 15px 5px rgba(0, 0, 0, 0.1);
  color: #1b5e20;
}

.box2 h2,
.box2 h3 {
  color: #2e7d32;
  font-weight: bold;
  margin-bottom: 15px;
}

.box2 ul {
  padding-left: 20px;
  color: #444;
}

.box2 li {
  margin-bottom: 8px;
}

input[type="radio"] {
  display: none;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px;
  background: aliceblue;
  font-size: 14px;
  margin-top: 22px;
  border: 1px solid #444;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin: 5px 0;
  cursor: pointer;
}

.payments img,
.social-icons img {
  height: 30px;
  margin: 5px;
}

.subscribe input {
  padding: 8px;
  width: 100%;
  margin-top: 5px;
}

.highlight {
  color: red;
  font-weight: bold;
}

.app-links {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.members li {
  font-weight: bold;
  margin: 5px 0;
}

.red {
  color: red;
}

.blue {
  color: #007bff;
}

@media (max-width: 768px) {
  .slider,
  .box2,
  .search {
    width: 100% !important;
  }

  .top-banner,
  .main-header,
  .icons {
    flex-direction: column;
    align-items: stretch;
  }

  .logo img {
    max-height: 300px !important;
    width: auto !important;
  }
}
