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

:root {
  --coral-soft: #F08080;
  --coral-light: #FFB6A3;
  --coral-dark: #E06060;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --light-gray: #F5F5F5;
  --medium-gray: #E0E0E0;
  --text-dark: #333333;
  --text-medium: #555555;
  --text-light: #777777;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

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

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

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

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

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

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

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

.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

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

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

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

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

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

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

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

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

.section {
  padding: 5rem 0;
}

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

.section-gray {
  background-color: var(--off-white);
}

.section-gradient {
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.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: 3px;
  background-color: var(--coral-soft);
  border-radius: 2px;
}

.info-block {
  padding: 3rem 0;
}

.info-block h3 {
  color: var(--coral-dark);
  margin-bottom: 1.5rem;
}

.info-block p {
  line-height: 1.8;
}

.info-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

.limits-block h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

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

.limits-block ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-medium);
}

.limits-block ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--coral-soft);
  font-weight: bold;
}

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

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.btn-cta {
  display: inline-block;
  background-color: var(--white);
  color: var(--coral-soft);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
}

.btn-cta:hover {
  background-color: var(--text-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-coral {
  display: inline-block;
  background-color: transparent;
  color: var(--coral-soft);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--coral-soft);
  transition: all 0.3s ease;
}

.btn-outline-coral:hover {
  background-color: var(--coral-soft);
  color: var(--white);
}

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

.page-header h1 {
  margin-bottom: 1rem;
}

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

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

.page-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

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

.contact-form {
  background-color: var(--off-white);
  border-radius: 12px;
  padding: 3rem;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form .form-control {
  border: 2px solid var(--medium-gray);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--coral-soft);
  box-shadow: 0 0 0 3px rgba(240, 128, 128, 0.1);
}

.contact-form .btn {
  background-color: var(--coral-soft);
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  width: 100%;
  transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
  background-color: var(--coral-dark);
}

.form-disclaimer {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 1rem;
  text-align: center;
}

.contact-info {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

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

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.thank-you-content h1 {
  color: var(--coral-soft);
  margin-bottom: 1.5rem;
}

footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

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

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-links h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

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

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--coral-light);
}

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

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.educational-notice {
  background-color: rgba(240, 128, 128, 0.1);
  border: 1px solid var(--coral-light);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  margin: 1rem 0;
}

.educational-notice p {
  color: var(--text-dark);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

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

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

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

.cookie-banner .btn-accept {
  background-color: var(--coral-soft);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.cookie-banner a {
  color: var(--coral-light);
}

@media (max-width: 991px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-section {
    padding: 3rem 0;
    min-height: auto;
  }

  .hero-content {
    text-align: center;
    margin-bottom: 2rem;
  }

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

  .section {
    padding: 3rem 0;
  }

  .image-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .image-grid img {
    height: 200px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero-section {
    padding: 2rem 0;
  }

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

  .section {
    padding: 2.5rem 0;
  }

  .limits-block {
    padding: 2rem;
  }

  .cta-section {
    padding: 3rem 0;
  }

  .contact-form {
    padding: 2rem;
  }

  footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-links {
    margin-top: 2rem;
  }
}
