/* Basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #ffffff;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: #003366;
}

nav a {
  margin-right: 1rem;
  color: #003366;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* Dropdown menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: none;
  border: none;
  color: #003366;
  font-weight: 500;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
  margin-right: 1rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  /* Allow the dropdown menu to scroll if there are many items */
  max-height: 360px;
  overflow-y: auto;
}

.dropdown-content a {
  color: #003366;
  padding: 0.5rem 1rem;
  display: block;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #f5f9fc;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: #e83e3e;
  color: #fff;
}

.btn-primary:hover {
  background: #c33232;
}

.btn-secondary {
  background: #1e90ff;
  color: #fff;
}

.btn-secondary:hover {
  background: #166cb5;
}

/* Instagram button styling */
/* Instagram button with a gradient similar to Instagram brand colors */
.btn-instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  color: #ffffff;
}
.btn-instagram:hover {
  background: linear-gradient(45deg, #e14a84, #c72b80, #662d91);
}

/* Hero section */
.hero {
  background: #f5f9fc;
  padding: 3rem 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #003366;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.hero-buttons a {
  margin-right: 0.8rem;
  margin-bottom: 1rem;
}

.hero-highlights {
  list-style: none;
  margin-top: 1rem;
}

.hero-highlights li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.hero-highlights li::before {
  content: '✔';
  color: #1e90ff;
  position: absolute;
  left: 0;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  opacity: 0;
  animation: fadeIn 1.5s ease-in forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Audience cards */
.who-for {
  padding: 3rem 0;
  background: #ffffff;
}

.who-for h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #003366;
}

.cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  background: #f5f9fc;
  padding: 1.5rem;
  border-radius: 8px;
  flex: 1;
  min-width: 260px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.card h3 {
  color: #003366;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
  color: #555;
}

/* Packages section */
.packages {
  padding: 3rem 0;
  background: #f5f9fc;
}

.packages h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #003366;
}

.package {
  background: #ffffff;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.package:hover {
  transform: translateY(-5px);
}

.package h3 {
  color: #e83e3e;
  margin-bottom: 0.5rem;
}

.package .subtitle {
  font-style: italic;
  margin-bottom: 1rem;
  color: #666;
}

.package ul {
  list-style: disc;
  margin-left: 1rem;
  margin-bottom: 1rem;
  color: #333;
}

.package .ideal {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #555;
}

/* Price display */
.package .price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #e83e3e;
  margin-bottom: 0.75rem;
}

/* Why choose us */
.why-us {
  padding: 3rem 0;
}

.why-us h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #003366;
}

.features {
  list-style: none;
  max-width: 800px;
  margin: auto;
}

.features li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  padding-left: 1rem;
  position: relative;
}

.features li::before {
  content: '✔';
  color: #1e90ff;
  position: absolute;
  left: 0;
}

/* Process */
.process {
  background: #f5f9fc;
  padding: 3rem 0;
}

.process h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #003366;
}

.process ol {
  max-width: 800px;
  margin: auto;
  counter-reset: step;
}

.process li {
  margin-bottom: 1rem;
  padding-left: 3rem;
  position: relative;
  line-height: 1.4;
}

.process li::before {
  counter-increment: step;
  content: counter(step) '.';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #e83e3e;
}

/* Lead magnet */
.lead-magnet {
  padding: 3rem 0;
  text-align: center;
}

.lead-magnet h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #003366;
}

.lead-magnet p {
  margin-bottom: 1.5rem;
  color: #555;
}

/* Contact */
.contact {
  background: #f5f9fc;
  padding: 3rem 0;
}

.contact h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #003366;
}

.contact p {
  text-align: center;
  margin-bottom: 2rem;
  color: #555;
}

.contact form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
/* Form rows and groups for the contact form */
.contact .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.contact .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact select {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
}

.contact input,
.contact textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
}

.contact button {
  align-self: flex-start;
}

/* Booking disclaimer */
.booking-disclaimer {
  font-size: 0.85rem;
  color: #666;
  margin-top: 1rem;
}

/* Privacy note styling */
.privacy-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
}

/* Contact Instagram link */
.contact-instagram {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}
.contact-instagram a {
  color: #1e90ff;
  text-decoration: none;
}
.contact-instagram a:hover {
  text-decoration: underline;
}

/* Global disclaimer in the footer */
footer .global-disclaimer {
  font-size: 0.8rem;
  color: #ccc;
  margin-top: 1rem;
  line-height: 1.4;
}

/* Service scope section */
.service-scope {
  padding: 3rem 0;
  background: #ffffff;
}

.service-scope h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #003366;
}

.service-scope p {
  margin-bottom: 0.5rem;
  color: #555;
}

.service-scope ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Footer */
footer {
  background: #003366;
  color: #ffffff;
  text-align: center;
  padding: 1.5rem 0;
}

footer p {
  margin-bottom: 0.5rem;
}

footer small {
  font-size: 0.8rem;
  color: #ccc;
}