body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0e0e0e;
    color: #f5f5f5;
}

.hero {
    position: relative;
    background: url('../images/hero.webp') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ccc;
}

.booking-form {
    max-width: 700px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #1c1c1c;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255,255,255,0.05);
}

.booking-form h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border-radius: 4px;
    border: none;
    background-color: #2b2b2b;
    color: #fff;
    font-size: 1rem;
}

.form-group input[type="file"] {
    padding: 0.5rem;
    background-color: #2b2b2b;
    border: none;
    color: #fff;
}

.btn-submit {
    display: block;
    width: 100%;
    background-color: #e63946;
    color: #fff;
    padding: 0.9rem;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background-color: #d62839;
}

.services {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: #1c1c1c;
    border-radius: 8px;
}

.services h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.services ul {
    list-style-type: none;
    padding: 0;
}

.services li {
    background-color: #2c2c2c;
    margin-bottom: 1rem;
    padding: 1rem;
    border-left: 5px solid #e63946;
    border-radius: 4px;
}

.hero {
  position: relative;
  height: 30vh;
  background: url('../images/hero2.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.seo-content {
  background-color: #0d0d0d;
  padding: 50px 20px;
  color: #f5f5f5;
}

.seo-content .container {
  max-width: 1000px;
  margin: 0 auto;
}

.seo-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
  font-weight: bold;
}

.seo-content p {
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 15px;
}
