/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background-color: #F8F9FA;
  color: #1B1B1E;
}

header {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: transparent;
  color: white;
  font-family: 'Montserrat', sans-serif;
  z-index: 10;
}

header nav a {
  margin-left: 25px;
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  z-index: 2;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  margin: 0;
}

.hero p {
  font-size: 1.2rem;
  margin: 20px 0;
}

.availability {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 30px;
}

.cta {
  background-color: #D62828;
  color: #C3C3C3;
  border: none;
  padding: 30px 60px;
  font-size: 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.ctab{
	background-color: #D62828;
	color: #FFFFFF;
	border: none;
	padding: 30px 60px;
	font-size: 1.2rem;
	font-weight: bold;
	border-radius: 8px;
	cursor: pointer;
	text-decoration: none;
}

footer {
  background-color: #003049;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

.content {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: #003049;
  margin-bottom: 20px;
}

.content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 40px;
  font-size: 1rem;
  line-height: 1.6;
}

.cta-section {
  text-align: center;
  padding: 40px 0;
  background-color: #F1F3F5;
  border-radius: 8px;
  margin: 40px auto;
  max-width: 800px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-section .cta {
  background-color: #D62828;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
}

.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-section label {
  font-weight: bold;
  font-size: 1rem;
}

.contact-section input,
.contact-section textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  header nav {
    margin-top: 10px;
  }

  header nav a {
    display: block;
    margin: 10px 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p,
  .cta-section p,
  .availability {
    font-size: 1rem;
  }

  .cta {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .content h2 {
    font-size: 1.5rem;
  }

  .content ul {
    font-size: 0.95rem;
  }

  .cta-section p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p,
  .cta-section p,
  .availability {
    font-size: 0.9rem;
  }

  .cta {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .content {
    padding: 40px 15px;
  }

  .content h2 {
    font-size: 1.3rem;
  }

  .contact-section form {
    padding: 0 10px;
  }
}
