:root {
  --primary-teal: #00D9C0;
  --deep-azure: #006D77;
  --crystal-white: #F8FFFE;
  --electric-teal: #00F5D4;
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.25);
  --dark-overlay: rgba(0, 45, 55, 0.85);
  --text-dark: #1a2e35;
  --text-light: #F8FFFE;
  --gradient-start: #006D77;
  --gradient-end: #00D9C0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #F8FFFE 0%, #E0F7F5 50%, #C4F1ED 100%);
  color: var(--text-dark);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

strong, p {
  color: inherit;
}

.navbar {
  background: rgba(0, 109, 119, 0.95) !important;
  backdrop-filter: blur(20px);
  padding: 1rem 2rem;
  position: fixed !important;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.is-scrolled {
  padding: 0.5rem 2rem;
  background: rgba(0, 109, 119, 0.98) !important;
  box-shadow: 0 8px 32px rgba(0, 109, 119, 0.2);
}

.navbar-brand {
  font-size: 1.6rem !important;
  font-weight: 700;
  color: var(--text-light) !important;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand .brand-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.navbar-menu {
  background: transparent !important;
}

.navbar-link.is-active, .navbar-link:focus, .navbar-link:focus-within, .navbar-link:hover, a.navbar-item.is-active, a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover {
  background: none;
}
.navbar-item {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary-teal);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-item:hover::after,
.navbar-item.is-active::after {
  width: 70%;
}

.navbar-item:hover {
  color: var(--primary-teal) !important;
  transform: translateY(-2px);
}

.navbar-burger {
  color: var(--text-light) !important;
}

.navbar-burger span {
  background-color: var(--text-light) !important;
  height: 2px !important;
}

.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gradient-start) 0%, #00A3A3 50%, var(--gradient-end) 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.3) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(0,245,212,0.2) 0%, transparent 40%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 109, 119, 0.88) 0%, rgba(0, 217, 192, 0.75) 50%, rgba(0, 245, 212, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.5rem;
  max-width: 600px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary-teal);
  color: var(--text-dark);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0, 217, 192, 0.4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(0, 217, 192, 0.5);
  background: var(--electric-teal);
  color: var(--text-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--text-light);
  color: var(--text-light);
  transform: translateY(-4px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
  display: block;
  width: 28px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  position: relative;
}

.hero-scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--primary-teal);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scroll-dot 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-15px); }
  60% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes scroll-dot {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 25px; }
}

.section {
  padding: 6rem 2rem;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #5a7a82;
  max-width: 650px;
  margin: 1.5rem auto 0;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 109, 119, 0.15);
}

.glass-card:hover::before {
  opacity: 1;
}

.about-section {
  background: var(--crystal-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 109, 119, 0.2);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 109, 119, 0.9), transparent);
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-teal);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.1rem;
  color: #4a6066;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.services-section {
  background: linear-gradient(180deg, #E0F7F5 0%, #F8FFFE 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 109, 119, 0.08);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 109, 119, 0.15);
}

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

.service-content {
  padding: 2rem;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.service-description {
  font-size: 1rem;
  color: #5a7a82;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gradient-start);
  margin-bottom: 1.25rem;
}

.service-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #7a9aa3;
}

.service-link {
  color: var(--gradient-start);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--primary-teal);
  gap: 0.75rem;
}

.benefits-section {
  background: var(--crystal-white);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 217, 192, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0, 109, 119, 0.08);
  transition: all 0.4s ease;
}

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

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 217, 192, 0.15) 0%, rgba(0, 109, 119, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin: 0 auto 1.5rem;
}

.benefit-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.benefit-description {
  font-size: 1rem;
  color: #5a7a82;
  line-height: 1.7;
}

.reviews-section {
  background: linear-gradient(135deg, var(--gradient-start) 0%, #00A3A3 100%);
  position: relative;
  overflow: hidden;
}

.reviews-section .section-title {
  color: var(--text-light);
}

.reviews-section .section-title::after {
  background: var(--primary-teal);
}

.reviews-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.18);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-teal);
}

.review-author {
  flex: 1;
}

.review-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
}

.review-rating {
  color: #FFD700;
  font-size: 1rem;
}

.review-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  font-style: italic;
}

.review-text::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-teal);
  line-height: 0;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-section {
  background: var(--crystal-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--gradient-start) 0%, #00A3A3 100%);
  border-radius: 24px;
  padding: 3rem;
  color: var(--text-light);
}

.contact-info-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}

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

.contact-value {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
}

.contact-value:hover {
  color: var(--primary-teal);
}

.contact-form-card {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 109, 119, 0.1);
}

.contact-form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

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

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e2eaec;
  border-radius: 12px;
  font-size: 1rem;
  color: var(--text-dark);
  background: #F8FFFE;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 4px rgba(0, 217, 192, 0.15);
}

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

.btn-submit {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  color: var(--text-light);
  border: none;
  padding: 1.1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 109, 119, 0.3);
}

.footer {
  background: #0a3d44;
  color: var(--text-light);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-brand {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--primary-teal);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-teal);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 109, 119, 0.25);
  z-index: 9999;
  max-width: 420px;
  display: none;
}

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

.cookie-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.cookie-text {
  font-size: 0.9rem;
  color: #5a7a82;
  margin-bottom: 1rem;
  line-height: 1.5;
}

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

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

.btn-cookie-accept {
  background: var(--gradient-start);
  color: var(--text-light);
}

.btn-cookie-accept:hover {
  background: var(--gradient-end);
}

.btn-cookie-decline {
  background: #e2eaec;
  color: var(--text-dark);
}

.btn-cookie-decline:hover {
  background: #d0dcdd;
}

.page-hero {
  min-height: 45vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gradient-start) 0%, #00A3A3 100%);
  margin-top: 60px;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 109, 119, 0.85);
}

.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
}

.content-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 109, 119, 0.1);
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 109, 119, 0.15);
}

.team-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.team-content {
  padding: 1.75rem;
  text-align: center;
}

.team-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--gradient-start);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.95rem;
  color: #5a7a82;
  line-height: 1.6;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 35px rgba(0, 109, 119, 0.1);
  transition: all 0.4s ease;
}

.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 109, 119, 0.2);
}

.portfolio-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 109, 119, 0.95), transparent);
  color: var(--text-light);
}

.portfolio-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.portfolio-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 109, 119, 0.08);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--gradient-start);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--gradient-start);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer-text {
  color: #5a7a82;
  line-height: 1.75;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.legal-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-teal);
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.legal-section p {
  color: #5a7a82;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section ul {
  padding-left: 1.5rem;
  color: #5a7a82;
  line-height: 1.8;
}

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

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gradient-start) 0%, #00A3A3 100%);
  padding: 6rem 2rem 2rem;
}

.thank-you-card {
  background: white;
  border-radius: 32px;
  padding: 4rem;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 30px 80px rgba(0, 109, 119, 0.3);
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.thank-you-message {
  font-size: 1.15rem;
  color: #5a7a82;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.thank-you-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gradient-start);
  text-decoration: none;
}

.thank-you-phone:hover {
  color: var(--primary-teal);
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar-brand {
      font-size: 1.2rem !important;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 4rem 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .page-hero-title {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .navbar-menu {
    background: rgba(0, 109, 119, 0.98) !important;
    padding: 1rem;
    border-radius: 0 0 16px 16px;
  }
  
  .cookie-consent-banner {
    left: 10px;
    right: 10px;
    max-width: none;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
