* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  line-height: 1.6;
  color: #1f3c40;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 60px 0;
}

.hero {
  background: linear-gradient(135deg, #0f4c5c, #2a9d8f);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.hero p {
  margin-bottom: 25px;
}

.btn {
  background: white;
  color: #0f4c5c;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  background: #e0f2f1;
}

.services h2,
.gallery h2,
.contact h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  transition: 0.3s;
}

.card:hover {
  background: #dff3f0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
}

.contact {
  background: #f9f9f9;
  text-align: center;
}

.map-container {
  margin: 30px 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  display: block;
}

.map-placeholder {
  background: #f4f4f4;
  padding: 40px;
  text-align: center;
  border-radius: 14px;
}

.map-placeholder button {
  margin-top: 15px;
  background: #0f4c5c;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}

.map-placeholder button:hover {
  background: #2a9d8f;
}

footer {
  background: #0f4c5c;
  color: white;
  padding: 20px;
}

.footer-content {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-links a {
  color: #e0f2f1;
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.legal h1 {
  margin-bottom: 30px;
}

.legal h2 {
  margin-top: 25px;
  margin-bottom: 10px;
}

.legal p {
  margin-bottom: 15px;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #0f4c5c;
  color: white;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 9999;
  font-size: 0.9rem;
}

#cookie-banner a {
  color: #e0f2f1;
  text-decoration: underline;
}

#cookie-banner button {
  background: white;
  color: #0f4c5c;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
}

#cookie-banner button:hover {
  background: #e0f2f1;
}

.about {
  background: #f9f9f9;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
  align-items: center;
}

.contact-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}