* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #6ea7c4;
  padding: 20px 30px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
  color: #ffffff;
  font-size: 22px;
  margin: 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img{
  width: 80px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 8px;
  transition: 0.3s;
}

nav ul li a:hover {
  background-color: black;
  color: #6ea7c4;
}

.contact-btn {
  background: black;
  color: #6ea7c4;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #000;
  color: #fff;
}

.space {
  width: 100%;
  height: 50px;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #6ea7c4;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 8px;
  transition: 0.3s;
}

nav ul li a:hover {
  background-color: black;
  color: #6ea7c4;
}

.contact-btn {
  background: black;
  color: #6ea7c4;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #000;
  color: #fff;
}

/* BODY & ACCORDION STYLES */
body {
  font-family: system-ui, sans-serif;
  margin: 0;
  padding-top: 100px; /* Space for fixed header */
  background: #f0f4f8;
  color: #222;
}

h1.page-title {
  text-align: center;
  margin-bottom: 30px;
}

.grid { 
  max-width: 700px; 
  margin: 0 auto 50px; 
}

.item {
  background: #6f9bb6;
  margin-bottom: 10px;
  border-radius: 12px;
  overflow: hidden;
}

.item input { display: none; }

.item label {
  display: block;
  padding: 20px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  color: #fff;
  user-select: none;
}

.item label:hover { background: #588099; }

.content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #fff;
  color: #111;
  padding: 0 20px;
}

.content ul { padding-left: 20px; margin: 10px 0; }
.content li { margin-bottom: 10px; }

.item input:checked ~ .content {
  max-height: 2000px; /* adjust if needed */
  padding: 20px;
}

/* === HAMBURGER MENU === */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 5px;
  transition: 0.3s;
}

.recommended {
  padding: 50px 20px;
  background: linear-gradient(180deg, rgba(163,210,202,0.06), rgba(110,167,196,0.03));
}

.recommended .rec-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.recommended h2 {
  font-size: 30px;
  margin-bottom: 6px;
  color: #08323a; /* slightly darker for contrast */
}

.rec-sub {
  color: #233b42;
  margin-bottom: 24px;
  font-size: 16px;
}

.rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* Cards */
.rec-card {
  background: #6f9bb6;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.rec-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.rec-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 18px;
  line-height: 1.45;
}

/* Button */
.rec-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.rec-btn {
  display: inline-block;
  text-decoration: none;
  background: #000;
  color: #6ea7c4;
  padding: 10px 14px;
  border-radius: 18px;
  font-weight: 700;
  transition: transform 0.15s, opacity 0.15s;
}

.rec-btn:hover {
  transform: translateY(-3px);
  opacity: 0.95;
}

/* === Responsive Navbar === */
@media (max-width: 850px) {
  .hamburger {
    display: flex;
  }

  nav ul {
    position: absolute;
    top: 80px;
    right: 0;
    background: #6ea7c4;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    padding: 0 20px;
    z-index: 999;
  }

  nav ul.active {
    max-height: 600px;
    padding: 20px;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 18px;
  }

  .contact-btn {
    background: #000;
    color: #6ea7c4;
    display: block;
    text-align: center;
    margin-top: 10px;
    border-radius: 20px;
    padding: 10px;
  }
}

@media (max-width: 992px) {
  .rec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .rec-grid {
    grid-template-columns: 1fr;
  }

  .recommended h2 {
    font-size: 26px;
  }

  .rec-card {
    text-align: left;
  }
}