body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-image: url("camcleans-sky-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #333;
}

header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #fff;
  padding: 10px 20px;
}


/* Logo */
.site-logo {
  height: 110px;     /* ← change this one number to resize */
  width: auto;      /* ← auto keeps proportions */
  display: block;
}

/* Hero Image */
.hero-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

/* Tagline */
.tagline {
  text-align: center;
  font-style: italic;
  font-size: 1.1rem;
  color: #444;
  margin: 20px auto 40px;
  padding: 0 20px;
  max-width: 800px;
}

/* Sections */
main section {
  background-color: #ffffff;
  margin: 30px auto;
  padding: 30px 20px;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: left;
}

.hero-tagline {
  max-width: 900px;
  margin: 30px auto;
  padding: 30px 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.section-box {
  background-color: #ffffff;
  margin: 30px auto;
  padding: 30px 20px;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: left;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Headings */
h1, h2 {
  margin-top: 0;
  color: #222;
}

/* Booking Form */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, select, textarea, button {
  padding: 10px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  background-color: #1c87c9;
  color: #fff;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #155d8b;
}

/* Footer */
footer {
  background-color: #222;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.social-icons a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.3rem;
  text-decoration: none;
}

.social-icons a:hover {
  color: #1da1f2;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

.tick {
  color: #1c87c9; /* or any blue you want */
  margin-right: 6px;
}

.testimonials blockquote {
  margin-left: 0;
  padding-left: 0;
}
