  :root {
      --primary: #0D4F67;
      /* Deep ocean blue */
      --secondary: #D4AF37;
      /* Golden yellow - temple gold */
      --accent: #2E8B57;
      /* Sea green - lush vegetation */
      --light: #F8F4E9;
      /* Cream - sandy beaches */
      --dark: #1A2F3C;
      /* Dark teal - deep forests */
      --text: #2C3E50;
      /* Charcoal blue-gray */
      --light-text: #FFFFFF;
      --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      --transition: all 0.3s ease;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Source Sans Pro', sans-serif;
      line-height: 1.7;
      color: var(--text);
      background-color: var(--light);
      overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-family: 'Playfair Display', serif;
      margin-bottom: 1rem;
      font-weight: 600;
      line-height: 1.3;
  }

  .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
  }

  .section-title {
      margin-bottom: 3rem;
      font-size: 2.5rem;
      color: var(--primary);
      position: relative;
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 100px;
      height: 4px;
      background: linear-gradient(to right, var(--secondary), var(--accent));
      border-radius: 2px;
  }

  /* Navigation */
  .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.97);
      box-shadow: var(--shadow);
      z-index: 1000;
      transition: var(--transition);
      padding: 0.8rem 0;
  }

  .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .logo {
      display: flex;
      align-items: center;
  }

  .logo h1 {
      font-size: 1.8rem;
      color: var(--primary);
      margin: 0;
  }

  .logo span {
      color: var(--secondary);
  }

  .nav-menu {
      display: flex;
      list-style: none;
  }

  .nav-menu li {
      margin-left: 2rem;
      position: relative;
  }

  .nav-menu a {
      text-decoration: none;
      color: var(--dark);
      font-weight: 600;
      transition: var(--transition);
      font-size: 1.05rem;
  }

  .nav-menu a:hover {
      color: var(--secondary);
  }

  .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--secondary);
      transition: var(--transition);
  }

  .nav-menu a:hover::after {
      width: 100%;
  }

  /* Dropdown Menu */
  .dropdown {
      position: relative;
  }

  .dropdown-content {
      display: none;
      position: absolute;
      background-color: white;
      min-width: 220px;
      box-shadow: var(--shadow);
      border-radius: 8px;
      z-index: 1001;
      top: 100%;
      left: 0;
      padding: 0.5rem 0;
      margin-top: 0.5rem;
  }

  .dropdown-content a {
      display: block;
      padding: 0.8rem 1.5rem;
      color: var(--text);
      text-decoration: none;
      transition: var(--transition);
      font-weight: 500;
  }

  .dropdown-content a:hover {
      background-color: rgba(212, 175, 55, 0.1);
      color: var(--secondary);
      padding-left: 2rem;
  }

  .dropdown:hover .dropdown-content {
      display: block;
  }

  .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
  }

  .bar {
      width: 25px;
      height: 3px;
      background-color: var(--dark);
      margin: 3px 0;
      transition: var(--transition);
      border-radius: 2px;
  }

  /* Hero Section */
  .hero {
      height: 60vh;
      background: linear-gradient(rgba(13, 79, 103, 0.7), rgba(13, 79, 103, 0.5)),
          url('https://images.unsplash.com/photo-1564501049416-4b30dbb8b69c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--light-text);
      padding: 0 1rem;
      margin-top: 65px;
  }

  .hero-content {
      max-width: 800px;
      animation: fadeIn 1.5s ease;
  }

  .hero-content h2 {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
      line-height: 1.2;
  }

  .hero-content p {
      font-size: 1.3rem;
      margin-bottom: 2.5rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      font-weight: 300;
  }

  /* Contact Section */
  .contact-section {
      padding: 5rem 0;
      background-color: #fff;
  }

  .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: start;
  }

  .contact-info {
      display: flex;
      flex-direction: column;
      gap: 30px;
  }

  .contact-card {
      background: white;
      border-radius: 12px;
      padding: 30px;
      box-shadow: var(--shadow);
      transition: var(--transition);
  }

  .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .contact-card h3 {
      color: var(--primary);
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .contact-card h3 i {
      color: var(--secondary);
  }

  .contact-card p {
      margin-bottom: 10px;
      color: #555;
  }

  .contact-form {
      background: white;
      border-radius: 12px;
      padding: 40px;
      box-shadow: var(--shadow);
  }

  .contact-form h2 {
      color: var(--primary);
      margin-bottom: 30px;
      text-align: center;
  }

  .form-group {
      margin-bottom: 20px;
  }

  .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: var(--dark);
  }

  .form-control {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 1rem;
      transition: var(--transition);
  }

  .form-control:focus {
      border-color: var(--secondary);
      outline: none;
      box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  }

  textarea.form-control {
      min-height: 150px;
      resize: vertical;
  }

  .submit-btn {
      background: linear-gradient(135deg, var(--secondary), #E8C547);
      color: var(--light-text);
      border: none;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      width: 100%;
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  }

  .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  }

  .form-message {
      padding: 15px;
      border-radius: 8px;
      margin-top: 20px;
      text-align: center;
      display: none;
  }

  .form-message.success {
      background: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb;
      display: block;
  }

  .form-message.error {
      background: #f8d7da;
      color: #721c24;
      border: 1px solid #f5c6cb;
      display: block;
  }

  /* FAQ Section */
  .faq-section {
      padding: 5rem 0;
      background: linear-gradient(to bottom, #fff, var(--light));
  }

  .faq-container {
      max-width: 800px;
      margin: 0 auto;
  }

  .faq-item {
      margin-bottom: 20px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--shadow);
  }

  .faq-question {
      background: white;
      padding: 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: var(--primary);
      transition: var(--transition);
  }

  .faq-question:hover {
      background-color: rgba(13, 79, 103, 0.05);
  }

  .faq-question i {
      transition: var(--transition);
  }

  .faq-item.active .faq-question i {
      transform: rotate(180deg);
  }

  .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: var(--transition);
      background: white;
  }

  .faq-item.active .faq-answer {
      padding: 20px;
      max-height: 500px;
  }

  /* Map Section */
  .map-section {
      padding: 0 0 5rem;
  }

  .map-container {
      height: 400px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow);
  }

  .map-placeholder {
      height: 100%;
      background: #e9ecef;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #6c757d;
      font-size: 1.1rem;
  }

  /* Footer */
  .footer {
      background-color: var(--dark);
      color: var(--light-text);
      padding: 4rem 0 1.5rem;
  }

  .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2.5rem;
      margin-bottom: 2.5rem;
  }

  .footer-section h3 {
      color: var(--secondary);
      margin-bottom: 1.5rem;
      font-size: 1.4rem;
  }

  .footer-section h4 {
      color: var(--secondary);
      margin-bottom: 1.2rem;
      font-size: 1.1rem;
  }

  .footer-section ul {
      list-style: none;
  }

  .footer-section ul li {
      margin-bottom: 0.8rem;
  }

  .footer-section a {
      color: var(--light-text);
      text-decoration: none;
      transition: var(--transition);
  }

  .footer-section a:hover {
      color: var(--secondary);
      padding-left: 5px;
  }

  .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
  }

  .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      transition: var(--transition);
  }

  .social-links a:hover {
      background-color: var(--secondary);
      transform: translateY(-3px);
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 1.5rem;
      text-align: center;
      font-size: 0.9rem;
  }

  .footer-bottom a {
      color: var(--secondary);
  }

  /* Animations */
  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* Responsive Design */
  @media (max-width: 992px) {
      .hero-content h2 {
          font-size: 3rem;
      }

      .contact-container {
          grid-template-columns: 1fr;
          gap: 40px;
      }
  }

  @media (max-width: 768px) {
      .nav-menu {
          position: fixed;
          left: -100%;
          top: 70px;
          flex-direction: column;
          background-color: white;
          width: 100%;
          text-align: left;
          transition: var(--transition);
          box-shadow: var(--shadow);
          padding: 1rem 0;
          height: calc(100vh - 70px);
          overflow-y: auto;
      }

      .nav-menu.active {
          left: 0;
      }

      .nav-menu li {
          margin: 0;
          width: 100%;
      }

      .nav-menu a {
          display: block;
          padding: 1rem 2rem;
          border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      }

      /* Remove the hover underline effect on mobile */
      .nav-menu a::after {
          display: none;
      }

      /* Dropdown toggle styles */
      .dropdown-toggle {
          display: flex;
          justify-content: space-between;
          align-items: center;
          cursor: pointer;
          position: relative;
      }

      .dropdown-toggle::after {
          content: '▼';
          font-size: 0.7rem;
          transition: var(--transition);
          margin-left: 0.5rem;
      }

      .dropdown.active .dropdown-toggle::after {
          transform: rotate(180deg);
      }

      .dropdown-content {
          position: static;
          box-shadow: none;
          display: none;
          background-color: rgba(0, 0, 0, 0.02);
          padding: 0;
          margin-top: 0;
          min-width: 100%;
      }

      .dropdown.active .dropdown-content {
          display: block;
      }

      .dropdown-content a {
          padding: 0.8rem 3rem;
          border-bottom: 1px solid rgba(0, 0, 0, 0.05);
          font-size: 0.95rem;
      }

      .dropdown-content a:hover {
          padding-left: 3.5rem;
          background-color: rgba(212, 175, 55, 0.1);
      }

      .hamburger {
          display: flex;
      }

      .hamburger.active .bar:nth-child(2) {
          opacity: 0;
      }

      .hamburger.active .bar:nth-child(1) {
          transform: translateY(8px) rotate(45deg);
      }

      .hamburger.active .bar:nth-child(3) {
          transform: translateY(-8px) rotate(-45deg);
      }

      /* Remove the default hover behavior for dropdown on mobile */
      .dropdown:hover .dropdown-content {
          display: none;
      }

      /* Only show dropdown when active class is present */
      .dropdown.active .dropdown-content {
          display: block;
      }

      .hero-content h2 {
          font-size: 2.5rem;
      }

      .section-title {
          font-size: 2rem;
      }

      .contact-form {
          padding: 30px 20px;
      }
  }

  @media (max-width: 576px) {
      .hero-content h2 {
          font-size: 2rem;
      }

      .hero-content p {
          font-size: 1.1rem;
      }
  }