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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  overflow-x: hidden;
}

.navbar {
  background: linear-gradient(135deg, #f5f0e8 0%, #e8f4f8 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #20b2aa 0%, #3a7d7c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.nav-link {
  color: #2c3e50;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #20b2aa, #3a7d7c);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f0e8 0%, #e8f4f8 50%, #d4e8e8 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/placeholder.svg?height=1080&width=1920") center / cover;
  opacity: 0.15;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(32, 178, 170, 0.1) 0%, rgba(58, 125, 124, 0.15) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2c3e50 0%, #3a7d7c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #34495e;
  margin-bottom: 2rem;
  max-width: 600px;
}

.btn-primary {
  background: linear-gradient(135deg, #20b2aa 0%, #3a7d7c 100%);
  border: none;
  padding: 0.875rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
  color: white;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
  background: linear-gradient(135deg, #3a7d7c 0%, #20b2aa 100%);
}

.btn-secondary {
  background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
  border: none;
  padding: 0.875rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  color: white;
}

.btn-secondary:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #7f8c8d 0%, #95a5a6 100%);
}

.intro-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2c3e50 0%, #3a7d7c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
}

.cards-grid {
  margin-top: 2rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #20b2aa 0%, #3a7d7c 100%);
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(32, 178, 170, 0.2);
}

.card-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #20b2aa 0%, #3a7d7c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.card-text {
  color: #7f8c8d;
  margin-bottom: 1.5rem;
}

.card-link {
  color: #20b2aa;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.card-link::after {
  content: "→";
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: #3a7d7c;
}

.card-link:hover::after {
  margin-left: 1rem;
}

.faq-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
  position: relative;
}

.faq-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #20b2aa 0%, #3a7d7c 100%);
}

.faq-card:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(32, 178, 170, 0.15);
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.faq-answer {
  color: #7f8c8d;
  line-height: 1.8;
}

.testimonial-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f0e8 0%, #e8f4f8 100%);
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  color: #20b2aa;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 1rem;
  font-weight: 700;
}

.testimonial-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(32, 178, 170, 0.2);
}

.testimonial-text {
  color: #34495e;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: #2c3e50;
}

.expert-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.expert-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(32, 178, 170, 0.2) 0%, rgba(58, 125, 124, 0.1) 100%);
  border-radius: 50%;
}

.expert-quote {
  position: relative;
  z-index: 1;
}

.quote-text {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #ecf0f1;
}

.quote-author {
  font-size: 1.2rem;
  font-weight: 600;
  color: #20b2aa;
}

.quote-title {
  color: #95a5a6;
  font-size: 1rem;
}

.expert-tips {
  position: relative;
  z-index: 1;
}

.tips-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

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

.tips-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  color: #ecf0f1;
}

.tips-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #20b2aa;
  font-weight: 700;
  font-size: 1.2rem;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #20b2aa 0%, #3a7d7c 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -25%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-cta {
  background: white;
  color: #20b2aa;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #3a7d7c;
}

.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #20b2aa;
}

.footer-text {
  color: #bdc3c7;
  line-height: 1.8;
}

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

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

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #20b2aa;
  padding-left: 5px;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 1.5rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-text {
  color: white;
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.cookie-text a {
  color: #20b2aa;
  text-decoration: underline;
}

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

.page-hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, #f5f0e8 0%, #e8f4f8 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(32, 178, 170, 0.1) 0%, rgba(58, 125, 124, 0.05) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2c3e50 0%, #3a7d7c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.page-hero-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

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

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

.content-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.content-text {
  color: #7f8c8d;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.expert-quote-large {
  background: linear-gradient(135deg, #20b2aa 0%, #3a7d7c 100%);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(32, 178, 170, 0.3);
  position: relative;
  overflow: hidden;
}

.expert-quote-large::before {
  content: '"';
  font-size: 10rem;
  color: white;
  opacity: 0.1;
  position: absolute;
  top: -2rem;
  left: 1rem;
  font-weight: 700;
}

.quote-text-large {
  font-size: 1.5rem;
  font-style: italic;
  color: white;
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.values-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
}

.value-card {
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #20b2aa 0%, #3a7d7c 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 15px rgba(32, 178, 170, 0.3);
}

.value-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.value-text {
  color: #7f8c8d;
}

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

.contact-info {
  background: linear-gradient(135deg, #f5f0e8 0%, #e8f4f8 100%);
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
}

.contact-title {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h4 {
  color: #20b2aa;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #7f8c8d;
  margin: 0;
}

.contact-form-wrapper {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control {
  border: 2px solid #e8f4f8;
  border-radius: 10px;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #20b2aa;
  box-shadow: 0 0 0 0.2rem rgba(32, 178, 170, 0.25);
}

.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.thankyou-content {
  background: linear-gradient(135deg, #f5f0e8 0%, #e8f4f8 100%);
  padding: 4rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thankyou-title {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #20b2aa 0%, #3a7d7c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.thankyou-text {
  font-size: 1.2rem;
  color: #7f8c8d;
  line-height: 1.8;
}

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

.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.legal-update {
  color: #95a5a6;
  font-style: italic;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #34495e;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #3a7d7c;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  color: #7f8c8d;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  color: #7f8c8d;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.legal-content a {
  color: #20b2aa;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #3a7d7c;
}

.legal-content strong {
  color: #2c3e50;
}

.alert {
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.alert-warning {
  background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
  border: 2px solid #f39c12;
  color: #795548;
}

.alert-info {
  background: linear-gradient(135deg, #dfe6e9 0%, #b2bec3 100%);
  border: 2px solid #74b9ff;
  color: #2c3e50;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

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

  .page-hero-title {
    font-size: 2.2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 70vh;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .card-number {
    font-size: 2rem;
  }

  .quote-text-large {
    font-size: 1.2rem;
  }

  .thankyou-content {
    padding: 2rem;
  }

  .thankyou-title {
    font-size: 2rem;
  }
}
