:root {
  --primary-light-blue: #ADD8E6;
  --primary-dark-blue: #4682B4;
  --accent-green: #8FBC8F;
  --accent-gray: #D3D3D3;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #FFFFFF;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Lora', serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Manrope', sans-serif;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

a {
  color: var(--primary-dark-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-green);
  text-decoration: underline;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: sticky;
  top: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--accent-gray);
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .navbar-brand {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-dark-blue);
}

header .navbar-nav .nav-link {
  color: var(--text-dark);
  margin-left: 1.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

header .navbar-nav .nav-link:hover {
  color: var(--accent-green);
}

.hero-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(70, 130, 180, 0.5);
  z-index: 1;
}

.hero-section .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

section {
  padding: 100px 0;
  border-bottom: 1px solid var(--accent-gray);
}

section.section-alt {
  background-color: #F5F5F5;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--primary-dark-blue);
}

.row-custom {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 3rem;
}

.row-custom.reverse {
  flex-direction: row-reverse;
}

.row-custom-col {
  flex: 1;
}

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

.card-custom {
  background-color: var(--white);
  border: 1px solid var(--accent-gray);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-custom:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-green);
}

.card-custom img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.card-custom h3 {
  color: var(--primary-dark-blue);
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.btn-custom {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-dark-blue);
  color: var(--white);
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.btn-custom:hover {
  background-color: var(--accent-green);
  text-decoration: none;
}

.btn-custom-secondary {
  background-color: var(--accent-green);
}

.btn-custom-secondary:hover {
  background-color: var(--primary-dark-blue);
}

.list-styled {
  list-style-position: inside;
  margin-left: 1rem;
}

.list-styled li {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.list-styled li::marker {
  color: var(--accent-green);
  font-weight: 700;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

table th {
  background-color: var(--primary-light-blue);
  color: var(--text-dark);
  padding: 1rem;
  text-align: left;
  border: 1px solid var(--accent-gray);
}

table td {
  padding: 1rem;
  border: 1px solid var(--accent-gray);
}

table tr:nth-child(even) {
  background-color: #F9F9F9;
}

.disclaimer-box {
  background-color: var(--primary-light-blue);
  border-left: 4px solid var(--primary-dark-blue);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box p {
  color: var(--text-dark);
  margin: 0;
  font-size: 0.95rem;
}

footer {
  background-color: var(--primary-dark-blue);
  color: var(--white);
  padding: 50px 0 20px 0;
}

footer a {
  color: var(--primary-light-blue);
}

footer a:hover {
  color: var(--accent-green);
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-section ul {
  list-style: none;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-dark-blue);
  color: var(--white);
  padding: 20px;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

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

.cookie-banner p {
  margin: 0;
  color: var(--white);
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.cookie-accept {
  background-color: var(--accent-green);
  color: var(--white);
}

.cookie-accept:hover {
  background-color: #7BA87B;
}

.cookie-reject {
  background-color: var(--accent-gray);
  color: var(--text-dark);
}

.cookie-reject:hover {
  background-color: #BEBEBE;
}

.cookie-more {
  background-color: transparent;
  color: var(--primary-light-blue);
  text-decoration: underline;
}

.cookie-more:hover {
  color: var(--accent-green);
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--accent-gray);
  border-radius: 4px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-dark-blue);
  box-shadow: 0 0 0 2px rgba(70, 130, 180, 0.1);
}

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

.faq-item {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--accent-gray);
  padding-bottom: 2rem;
}

.faq-item h3 {
  color: var(--primary-dark-blue);
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-item h3:hover {
  color: var(--accent-green);
}

.faq-answer {
  margin-top: 1rem;
  color: var(--text-light);
}

.soft-cta {
  text-align: center;
  padding: 2rem;
  background-color: var(--primary-light-blue);
  border-radius: 8px;
  margin: 2rem 0;
}

.soft-cta p {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

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

.thank-you-content h1 {
  color: var(--primary-dark-blue);
  margin-bottom: 1.5rem;
}

.thank-you-content p {
  margin-bottom: 2rem;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }

  .row-custom,
  .row-custom.reverse {
    flex-direction: column;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 15px;
  }

  .cookie-banner p {
    flex: none;
    width: 100%;
  }

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

  section {
    padding: 60px 0;
  }
}
