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

:root {
  --coral-accent: #E8998D;
  --coral-light: #F5D5CB;
  --coral-dark: #C97B6B;
  --text-dark: #2D2D2D;
  --text-muted: #6B6B6B;
  --bg-light: #FAFAFA;
  --bg-white: #FFFFFF;
  --border-light: #E8E8E8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

a {
  color: var(--coral-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--coral-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.navbar {
  background: var(--bg-white);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--coral-accent) !important;
  letter-spacing: 0.5px;
}

.navbar-brand:hover {
  color: var(--coral-dark) !important;
}

.nav-link {
  color: var(--text-dark) !important;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--coral-accent) !important;
}

.navbar-toggler {
  border: 1px solid var(--coral-accent);
  padding: 0.5rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%23E8998D' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--coral-light) 100%);
  padding: 4rem 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--bg-white);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--coral-accent);
}

.content-block {
  margin-bottom: 2rem;
}

.content-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.content-image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.content-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.image-grid-item {
  border-radius: 8px;
  overflow: hidden;
}

.image-grid-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.limits-section {
  background: linear-gradient(135deg, var(--coral-light) 0%, var(--bg-white) 100%);
  border-radius: 12px;
  padding: 3rem;
  margin: 2rem 0;
}

.limits-section h2 {
  color: var(--coral-dark);
}

.limits-list {
  list-style: none;
  padding: 0;
}

.limits-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
}

.limits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 8px;
  height: 8px;
  background: var(--coral-accent);
  border-radius: 50%;
}

.cta-section {
  background: var(--bg-white);
  padding: 4rem 0;
  text-align: center;
}

.cta-button {
  display: inline-block;
  background: var(--coral-accent);
  color: var(--bg-white) !important;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  color: var(--bg-white) !important;
}

.page-header {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--coral-light) 100%);
  padding: 4rem 0;
  text-align: center;
}

.page-content {
  padding: 4rem 0;
}

.page-content p {
  margin-bottom: 1.5rem;
}

.page-content h3 {
  margin-top: 2rem;
  color: var(--coral-dark);
}

.contact-form {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid var(--border-light);
}

.form-control {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--coral-accent);
  box-shadow: 0 0 0 3px rgba(232, 153, 141, 0.2);
  outline: none;
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 8px;
}

.contact-info {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 0.75rem;
}

.thank-you-section {
  text-align: center;
  padding: 6rem 0;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: var(--coral-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--coral-dark);
}

footer {
  background: var(--text-dark);
  color: var(--bg-light);
  padding: 3rem 0 1.5rem;
}

.footer-brand {
  font-size: 1.5rem;
  color: var(--coral-accent);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--bg-light);
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--coral-accent);
}

.footer-contact p {
  color: var(--bg-light);
  opacity: 0.8;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: var(--bg-light);
  opacity: 0.7;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

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

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

.cookie-btn-accept {
  background: var(--coral-accent);
  color: var(--bg-white);
  border: none;
}

.cookie-btn-accept:hover {
  background: var(--coral-dark);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.cookie-btn-decline:hover {
  border-color: var(--coral-accent);
}

@media (max-width: 991px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    padding: 3rem 0;
    min-height: auto;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.35rem;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .image-grid {
    grid-template-columns: 1fr;
  }
  
  .limits-section {
    padding: 2rem 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  footer {
    text-align: center;
  }
  
  .footer-links {
    margin-bottom: 1.5rem;
  }
}
