html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #fefdfb;
  color: #4a4a4a;
  line-height: 1.6;
}

:root {
  --primary-white: #fefdfb;
  --primary-grey: #f3f1ed;
  --accent-fuchsia: #e63a8a;
  --accent-turquoise: #009ba5;
  --text-dark: #3a3a3a;
  --text-light: #6a6a6a;
}

* {
  box-sizing: border-box;
}

header {
  background: linear-gradient(135deg, rgba(254, 253, 251, 0.95), rgba(243, 241, 237, 0.95));
  border-bottom: 1px solid #e8e6e0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.navbar {
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-fuchsia);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--accent-fuchsia);
}

.hero {
  height: 500px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 2;
  position: relative;
  color: white;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  max-width: 700px;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 500px;
  font-weight: 300;
  line-height: 1.6;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 4rem 2rem;
  border-radius: 20px;
  margin: 3rem auto;
  max-width: 1400px;
}

.section-light {
  background: var(--primary-white);
}

.section-grey {
  background: linear-gradient(135deg, rgba(243, 241, 237, 0.5), rgba(243, 241, 237, 0.3));
}

.section-gradient {
  background: linear-gradient(135deg, rgba(230, 58, 138, 0.08), rgba(0, 155, 165, 0.08));
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.row {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.row img {
  flex: 0 0 45%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 400px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.row-content {
  flex: 1;
}

.row-content h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.row-content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.key-phrase {
  font-size: 1.05rem;
  color: var(--accent-fuchsia);
  font-weight: 600;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid var(--accent-turquoise);
}

.grid-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0ebe5;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card h4 {
  color: var(--accent-fuchsia);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer {
  background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
  color: white;
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent-fuchsia);
}

.footer-section p, .footer-section a {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #d0d0d0;
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--accent-fuchsia);
}

.footer-legal {
  border-top: 1px solid #555;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #a0a0a0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e8e6e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-fuchsia);
  box-shadow: 0 0 0 3px rgba(230, 58, 138, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  cursor: pointer;
}

.checkbox-group label {
  margin: 0;
  font-weight: normal;
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkbox-group a {
  color: var(--accent-fuchsia);
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--accent-fuchsia), var(--accent-turquoise));
  color: white;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(230, 58, 138, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 58, 138, 0.4);
}

.btn:active {
  transform: translateY(0);
}

.thank-you-container {
  max-width: 600px;
  margin: 3rem auto;
  padding: 3rem 2rem;
  text-align: center;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thank-you-container h1 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.thank-you-container p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.thank-you-container a {
  color: var(--accent-fuchsia);
  text-decoration: none;
  font-weight: 600;
}

.thank-you-container a:hover {
  text-decoration: underline;
}

.legal-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.legal-text h2 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin: 2rem 0 1rem 0;
  font-weight: 700;
}

.legal-text h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 1.5rem 0 0.75rem 0;
  font-weight: 600;
}

.legal-text ul, .legal-text ol {
  margin-left: 1.5rem;
}

.legal-text li {
  margin-bottom: 0.5rem;
}

#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2a2a2a;
  color: white;
  padding: 1.5rem 2rem;
  text-align: center;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  border-top: 3px solid var(--accent-fuchsia);
}

#cookie-consent p {
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

#cookie-consent a {
  color: var(--accent-fuchsia);
  text-decoration: none;
}

#cookie-consent a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--accent-fuchsia);
  color: white;
}

.cookie-accept:hover {
  background: #d12a75;
}

.cookie-decline {
  background: #555;
  color: white;
}

.cookie-decline:hover {
  background: #777;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section {
    padding: 2rem 1rem;
    margin: 2rem auto;
  }

  .row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .row img {
    flex: 1;
    max-height: 300px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .grid-items {
    grid-template-columns: 1fr;
  }

  #cookie-consent {
    padding: 1rem;
  }

  .cookie-buttons {
    gap: 0.5rem;
  }

  .cookie-btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
}
