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

:root {
  --color-cream: #fff8f0;
  --color-blue-light: #e8f4f8;
  --color-blue: #5ba8c2;
  --color-emerald: #2d7a68;
  --color-teal: #3d9b8f;
  --color-gold: #d4af37;
  --color-graphite: #2c3e50;
  --color-white: #ffffff;
  --color-gray-light: #f5f5f5;
  --color-gray: #95a5a6;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--color-graphite);
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-blue-light) 100%);
  min-height: 100vh;
}

.navbar {
  background: linear-gradient(90deg, var(--color-emerald) 0%, var(--color-teal) 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white) !important;
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: var(--color-gold) !important;
  transform: translateY(-2px);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 122, 104, 0.1) 0%, rgba(93, 168, 194, 0.15) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  z-index: 0;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-teal) 50%, var(--color-blue) 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: var(--color-graphite);
  margin-bottom: 2rem;
  max-width: 600px;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-teal) 100%);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  color: var(--color-white);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 122, 104, 0.3);
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 122, 104, 0.4);
  color: var(--color-white);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-emerald) 0%, var(--color-teal) 100%);
  border-radius: 2px;
}

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

.card-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-emerald) 0%, var(--color-teal) 100%);
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(45, 122, 104, 0.15);
}

.card-custom h3 {
  color: var(--color-emerald);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.card-custom p {
  color: var(--color-graphite);
  line-height: 1.8;
}

.card-offset {
  margin-top: 3rem;
}

.diagonal-section {
  position: relative;
  padding: 5rem 0;
  background: var(--color-white);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  margin: 5rem 0;
}

.quote-card {
  background: linear-gradient(135deg, rgba(45, 122, 104, 0.05) 0%, rgba(93, 168, 194, 0.05) 100%);
  border-left: 5px solid var(--color-emerald);
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.quote-text {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-graphite);
  margin-bottom: 1rem;
}

.quote-author {
  font-weight: 600;
  color: var(--color-emerald);
  text-align: right;
}

.faq-card {
  background: var(--color-white);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-card:hover {
  box-shadow: 0 5px 20px rgba(45, 122, 104, 0.15);
}

.faq-question {
  font-weight: 600;
  color: var(--color-emerald);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--color-graphite);
  line-height: 1.8;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 5rem;
  color: var(--color-teal);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--color-graphite);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-emerald);
}

.footer {
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-teal) 100%);
  color: var(--color-white);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin: 0.5rem 0;
}

.footer a:hover {
  color: var(--color-gold);
  transform: translateX(5px);
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

.form-control {
  border: 2px solid var(--color-gray-light);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 0.2rem rgba(61, 155, 143, 0.25);
}

.contact-form {
  background: var(--color-white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.info-box {
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-teal) 100%);
  color: var(--color-white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.info-box h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.info-box p {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.legal-content {
  background: var(--color-white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin: 3rem 0;
}

.legal-content h2 {
  color: var(--color-emerald);
  margin: 2rem 0 1rem;
  font-size: 1.8rem;
}

.legal-content h3 {
  color: var(--color-teal);
  margin: 1.5rem 0 1rem;
  font-size: 1.4rem;
}

.legal-content p,
.legal-content ul {
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--color-graphite);
}

.legal-content ul {
  padding-left: 2rem;
}

.thank-you-box {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  background: var(--color-white);
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 62, 80, 0.98);
  color: var(--color-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 {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.cookie-banner a {
  color: var(--color-gold);
  text-decoration: underline;
}

.cookie-banner .btn {
  margin: 0 0.5rem;
}

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

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

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

  .card-offset {
    margin-top: 0;
  }

  .contact-form {
    padding: 2rem;
  }

  .legal-content {
    padding: 2rem;
  }

  .thank-you-content {
    padding: 2rem;
  }
}
