:root {
  --aqua-light: #7dd3d8;
  --aqua-soft: #a8e6e8;
  --aqua-pale: #d4f5f5;
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gray-medium: #6c757d;
  --gray-dark: #343a40;
  --text-primary: #2c3e50;
  --text-secondary: #5a6c7d;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-primary);
  line-height: 1.7;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.navbar {
  background: linear-gradient(135deg, var(--white) 0%, var(--aqua-pale) 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary) !important;
}

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

.nav-link:hover {
  color: var(--aqua-light) !important;
}

.hero-section {
  background: linear-gradient(180deg, var(--aqua-pale) 0%, var(--white) 100%);
  padding: 5rem 0;
  text-align: center;
}

.hero-section h1 {
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-image {
  margin-top: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(125, 211, 216, 0.2);
}

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

.content-section:nth-child(even) {
  background-color: var(--gray-light);
}

.content-section h2 {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.content-section h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--aqua-light), var(--aqua-soft));
  border-radius: 2px;
}

.content-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--aqua-pale);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(125, 211, 216, 0.15);
}

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

.image-grid.single {
  grid-template-columns: 1fr;
  max-width: 600px;
}

.image-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

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

.limits-section h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.limits-section p {
  margin-bottom: 0.5rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--aqua-soft) 0%, var(--aqua-pale) 100%);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section h2::after {
  display: none;
}

.btn-cta {
  background: var(--white);
  color: var(--text-primary);
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  border: 2px solid var(--aqua-light);
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
}

.btn-cta:hover {
  background: var(--aqua-light);
  color: var(--white);
}

.footer {
  background: var(--gray-dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer h5 {
  color: var(--aqua-soft);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer p, .footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer a:hover {
  color: var(--aqua-soft);
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-disclaimer {
  background: rgba(125, 211, 216, 0.1);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.page-header {
  background: linear-gradient(180deg, var(--aqua-pale) 0%, var(--white) 100%);
  padding: 4rem 0 3rem;
  text-align: center;
}

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

.page-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.page-content li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--aqua-pale);
}

.contact-form .form-control {
  border: 1px solid var(--aqua-pale);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--aqua-light);
  box-shadow: 0 0 0 3px rgba(125, 211, 216, 0.2);
}

.contact-form .btn-submit {
  background: linear-gradient(135deg, var(--aqua-light) 0%, var(--aqua-soft) 100%);
  color: var(--white);
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(125, 211, 216, 0.4);
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--gray-light);
  border-radius: 6px;
}

.contact-info {
  background: linear-gradient(135deg, var(--aqua-pale) 0%, var(--white) 100%);
  padding: 2.5rem;
  border-radius: 12px;
  height: 100%;
}

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

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

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, var(--aqua-pale) 0%, var(--white) 100%);
}

.thank-you-content {
  max-width: 600px;
  padding: 3rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gray-dark);
  color: var(--white);
  padding: 1rem;
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.cookie-banner .btn-accept {
  background: var(--aqua-light);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-banner .btn-accept:hover {
  background: var(--aqua-soft);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    padding: 3rem 0;
  }
  
  .content-section {
    padding: 2.5rem 0;
  }
  
  .image-grid {
    grid-template-columns: 1fr;
  }
  
  .image-grid img {
    height: 180px;
  }
  
  .limits-section {
    padding: 1.5rem;
  }
  
  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }
  
  .footer {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .content-card {
    padding: 1.5rem;
  }
  
  .cta-section {
    padding: 2.5rem 0;
  }
}
