/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}


.header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Container */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}


/* Header */
.header {
  background: white;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}


.logo {
  font-size: 24px;
  color: #009688;
  font-weight: bold;
  text-decoration: none;
}

.nav a {
  color: #333;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

.nav a:hover {
  color: #009688;
}

/* Hero Section */
.hero {
  background: url('images/background.jpg') no-repeat center center;
  background-size: cover;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 40px;
  text-align: center;
  border-radius: 8px;
  max-width: 600px;
}

.overlay h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-button {
  background: #009688;
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #00796b;
}

/* Section Spacing */
.section {
  padding: 60px 0;
}

.light-bg {
  background-color: #f1f1f1;
}

/* Services Section */
.services-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.services-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  flex: 0 1 calc(33.33% - 30px);
  max-width: 300px;
  min-width: 260px;
}

@media (max-width: 900px) {
  .service-card {
    flex: 0 1 calc(50% - 30px);
  }
}

@media (max-width: 600px) {
  .service-card {
    flex: 0 1 100%;
  }
}


.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 10px;
  color: #ff5722;
}
/* Basic layout */
.header-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
}

.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    background-color: #fff;
    padding: 10px 0;
  }

  .nav a {
    padding: 10px 20px;
    border-top: 1px solid #eee;
  }

  .nav.show {
    display: flex;
  }

  .header-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-button {
    width: 90%;
    font-size: 16px;
    padding: 12px 20px;
  }

  #cookie-banner {
    text-align: center;
    padding: 20px;
  }

  #cookie-banner button {
    margin-top: 10px;
    width: 90%;
    max-width: 200px;
  }
}


.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

form input, form select, form textarea {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
form button {
  background-color: #009688;
  color: white;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
form button:hover {
  background-color: #00796b;
}

.service-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.service-link {
  font-size: 14px;
  font-weight: bold;
  color: #0077cc;
  text-decoration: none;
}

.service-link:hover {
  text-decoration: underline;
}

.service-hero {
  background: rgba(0, 150, 136, 0.1);
  padding: 60px 20px;
  text-align: center;
}

.service-hero h1 {
  font-size: 32px;
  color: #222;
}

.two-column-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.cta-button {
  transition: background 0.3s ease, transform 0.3s ease;
}
.cta-button:hover {
  background-color: #00796b;
  transform: scale(1.05);
}


.column {
  flex: 1;
  min-width: 300px;
}

.image-column img {
  width: 100%;
  border-radius: 8px;
}

.text-column h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.text-column p {
  margin-bottom: 15px;
}

.text-column ul {
  padding-left: 20px;
  color: #444;
}

.highlight-section {
  background-color: #e6f7fb;
  padding: 60px 20px;
  text-align: center;
}

.cta-contact-section {
  padding: 60px 20px;
  background: #f8f9fa;
}
.private-hero {
  background: url('images/background.jpg') no-repeat center center;
  background-size: cover;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.private-hero .overlay {
  background: rgba(0, 0, 0, 0.5); /* semi-transparent dark background */
  color: white;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  max-width: 700px;
}

.private-hero h1 {
  font-size: 36px;
  font-weight: bold;
}

.main-hero {
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.business-hero {
  background: url('images/background.jpg') no-repeat center center;
  background-size: cover;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.business-hero .overlay {
  background: rgba(0, 0, 0, 0.5); /* Dark transparent layer */
  color: white;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  max-width: 700px;
}

.business-hero h1 {
  font-size: 36px;
  font-weight: bold;
}

.contact-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.contact-image {
  flex: 1;
  min-width: 300px;
}

.contact-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form {
  flex: 1;
  min-width: 350px;
}

.contact-form h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.contact-form p {
  margin-bottom: 20px;
  color: #555;
}
.two-columns {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
}
@media (max-width: 768px) {
  .two-columns {
    flex-direction: column;
  }
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 15px;
}

.contact-form button {
  width: 100%;
  background-color: #009688;
  color: white;
  font-weight: bold;
  padding: 14px;
  border: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #00796b;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}



/* Reviews */
blockquote {
  font-style: italic;
  background: white;
  padding: 20px;
  border-left: 5px solid #009688;
  border-radius: 5px;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

form input,
form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

form button {
  padding: 12px;
  background-color: #009688;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #00796b;
}

/* Features Section */
.light-blue-bg {
  background-color: #e6f7fb;
}

.features-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  text-align: center;
  flex-wrap: wrap;
}

.feature {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  margin: auto;
  padding: 20px;
}

.feature h3 {
  margin-top: 15px;
  font-size: 20px;
  color: #002d3d;
}

.feature p {
  margin-top: 10px;
  color: #444;
  font-size: 16px;
}

.icon {
  width: 50px;
  height: 50px;
  margin: auto;
  display: block;
}
.light-bg {
  background-color: #f8f9fa;
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.about-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.about-list li::before {
  content: "✔";
  color: #009688;
  font-weight: bold;
  position: absolute;
  left: 0;
}


/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 30px 0;
}

@media (max-width: 1024px) {
  .service-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
