/* Global Styles */

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  background-color: #f5f5f5;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: center;
}

/* Globals */

h3 {
  margin-top: 0;
  font-size: 36px;
  font-weight: 700;
}

/* Header Styles */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.logo h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.logo p {
  margin: 0;
  font-size: 16px;
}

.logo img {
  max-height: 100px;
  margin-right: 10px;
}

/* Hero Section Styles */

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
  background-image: url('relaxing.jpeg');
  background-size: cover;
  background-position: center center;
  color: #ffffff;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  padding: 32px;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero h2 {
  margin-top: 0;
  font-size: 48px;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  background-color: #4e88b6;
  color: #fff;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}

.cta-button:hover {
  background-color: #68a0cf;
}


/* About Section Styles */

.about {
  padding: 64px 16px;
  background-color: #ffffff;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about p {
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.5;
}

.about img {
  display: block;
  max-width: 100%;
  margin: 32px auto;
  border-radius: 5px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

/* Costs Section Styles */

.costs {
  padding: 64px 16px;
}

.costs-content {
  max-width: 800px;
  margin: 0 auto;
}

.costs p {
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.5;
}

/* Services Section Styles */

.services {
  padding: 64px 16px;
  background-color: #fff;
}

.services-content {
  max-width: 800px;
  margin: 0 auto;
}

.services ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

.services li {
  flex-basis: calc(33.33% - 16px);
  margin: 16px;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.services li h4 {
  margin-top: 0;
  font-size: 24px;
  font-weight: 700;
}

.services li p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.5;
}

/* Contact Section Styles */

.contact {
  background-color: #F0F8FF;
  padding: 64px 16px;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact p {
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
}

.contact h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}