*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: linear-gradient(180deg, #ccfbf1, #f0fdfa);
  background-attachment: fixed;
  font-family: 'Source Sans 3', sans-serif;
  color: #444;
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
}

h1, h2, h3, .site-logo {
  font-family: 'Libre Baskerville', serif;
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: 3rem; margin-bottom: 16px; }
h2 { font-size: 1.75rem; margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }

p { margin-bottom: 14px; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

a { color: #0d9488; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Cookie banner */
.cookie-banner {
  background: rgba(255,255,255,0.9);
  padding: 14px 0;
  font-size: 14px;
}
.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner p { margin: 0; }
.cookie-banner button {
  background: #0d9488;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 8px 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: inherit;
}
.cookie-banner button:hover { opacity: 0.85; }

/* Navbar */
.navbar { padding: 16px 0; background: transparent; }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-logo {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
}
.site-logo a { color: inherit; text-decoration: none; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}
.nav-links a {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  color: #1a1a1a;
}
.nav-links a:hover { color: #0d9488; text-decoration: none; }

/* Sections */
section { padding: 64px 0; }

/* Hero */
.hero-text { max-width: 60%; }
.hero-text p { font-size: 1.05rem; margin-bottom: 24px; color: #444; }

/* Buttons */
.btn {
  display: inline-block;
  background: #0d9488;
  color: #fff;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: opacity 0.2s;
  font-family: inherit;
  text-decoration: none;
}
.btn:hover { opacity: 0.85; text-decoration: none; color: #fff; }

/* About */
.about { max-width: 800px; }

/* Cards */
.card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 6px 20px rgba(13,148,136,0.08); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* Contact */
.contact-info {
  text-align: center;
  margin-bottom: 24px;
  color: #444;
}
.contact-info p { margin-bottom: 4px; }
.contact-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px;
}
.contact-form-wrap h2 { text-align: center; }
.contact-form-wrap .subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 24px;
}

form .field { margin-bottom: 14px; }
label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #444;
}
input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  background: #fff;
}
input:focus {
  border-color: #0d9488;
  box-shadow: 0 0 0 2px #0d948820;
}
.btn-submit {
  width: 100%;
  padding: 12px;
  background: #0d9488;
  color: #fff;
  border: none;
  border-radius: 0;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: inherit;
}
.btn-submit:hover { opacity: 0.85; }
.success-msg {
  display: none;
  margin-top: 18px;
  padding: 12px;
  background: rgba(13,148,136,0.1);
  color: #0d9488;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
}
.success-msg.show { display: block; }

/* Footer */
footer {
  text-align: center;
  color: #777;
  padding: 32px 0;
  font-size: 14px;
}
footer a { color: #0d9488; }
footer .footer-links {
  margin-top: 8px;
}
footer .footer-links a { margin: 0 8px; }

/* Legal pages content */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { margin-top: 28px; }
.legal-content h3 { margin-top: 20px; }
.legal-content ul { margin: 10px 0 14px 22px; }
.legal-content li { margin-bottom: 6px; }

.page-title { margin-bottom: 24px; }

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  .hero-text { max-width: 100%; }
  .navbar .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    flex-wrap: wrap;
    gap: 16px;
  }
  section { padding: 48px 0; }
  .contact-form-wrap { padding: 24px; }
}
