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

:root {
  --primary-color: #4a9b9f;
  --primary-hover: #3d8286;
  --text-dark: #2c2c2c;
  --text-medium: #5a5a5a;
  --text-light: #7a7a7a;
  --bg-white: #ffffff;
  --bg-light: #f8f6f4;
  --bg-warm: #fff9f5;
  --border-color: #e8e4e1;
  --shadow-light: rgba(74, 155, 159, 0.08);
  --shadow-medium: rgba(74, 155, 159, 0.15);
  --gradient-hero: linear-gradient(135deg, #4a9b9f 0%, #5aafb3 100%);
}

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

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 12px var(--shadow-light);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.navbar-brand:hover {
  color: var(--primary-hover);
}

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

.nav-link:hover {
  color: var(--primary-color);
}

.btn-primary {
  background: var(--gradient-hero);
  border: none;
  color: var(--bg-white);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow-light);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-medium);
  background: var(--primary-hover);
}

main {
  margin-top: 76px;
}

.hero-section {
  position: relative;
  background: var(--gradient-hero);
  padding: 6rem 0;
  color: var(--bg-white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 155, 159, 0.95) 0%, rgba(90, 175, 179, 0.9) 100%);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.95;
}

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

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

.bg-warm {
  background-color: var(--bg-warm);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-intro {
  font-size: 1.15rem;
  color: var(--text-medium);
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-text {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.rounded-custom {
  border-radius: 12px;
}

.shadow-custom {
  box-shadow: 0 8px 24px var(--shadow-light);
}

.flow-card,
.context-card,
.moment-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--shadow-light);
  transition: all 0.3s ease;
  height: 100%;
}

.flow-card:hover,
.context-card:hover,
.moment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px var(--shadow-medium);
}

.flow-card img,
.context-card img,
.moment-card img {
  margin-bottom: 1.5rem;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.flow-card h3,
.context-card h3,
.moment-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.flow-card p,
.context-card p,
.moment-card p {
  color: var(--text-medium);
  line-height: 1.7;
}

.limits-content {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--shadow-light);
  margin-top: 2rem;
}

.limit-item {
  padding: 2rem;
  margin-bottom: 2rem;
  background: var(--bg-light);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.limit-item:last-child {
  margin-bottom: 0;
}

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

.limit-item p {
  color: var(--text-medium);
  margin: 0;
  line-height: 1.7;
}

.faq-item {
  background: var(--bg-white);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--shadow-light);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px var(--shadow-medium);
}

.faq-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--text-medium);
  margin: 0;
  line-height: 1.7;
}

.contact-form-wrapper {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--shadow-light);
}

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

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(74, 155, 159, 0.15);
}

.form-disclaimer {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid var(--primary-color);
}

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

.contact-info {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.contact-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.contact-info p {
  color: var(--text-medium);
  line-height: 1.8;
}

.site-footer {
  background-color: var(--text-dark);
  color: var(--bg-light);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.site-footer h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--bg-white);
}

.site-footer p {
  color: var(--bg-light);
  opacity: 0.9;
}

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

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

.footer-links a {
  color: var(--bg-light);
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0.9;
}

.footer-links a:hover {
  color: var(--primary-color);
  opacity: 1;
}

.footer-copy {
  color: var(--bg-light);
  opacity: 0.7;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44, 44, 44, 0.98);
  color: var(--bg-white);
  padding: 1.5rem 0;
  z-index: 2000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

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

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

.btn-accept {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.btn-accept:hover {
  background-color: var(--primary-hover);
}

.btn-reject {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

.btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-settings {
  background-color: transparent;
  color: var(--bg-white);
  text-decoration: underline;
}

.btn-settings:hover {
  color: var(--primary-color);
}

.btn-save {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.btn-save:hover {
  background-color: var(--primary-hover);
}

.cookie-settings {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-settings h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.cookie-option {
  margin-bottom: 1rem;
}

.cookie-option input[type="checkbox"] {
  margin-right: 0.75rem;
}

.cookie-option label {
  cursor: pointer;
}

.policy-page {
  padding: 6rem 0 4rem;
}

.policy-page h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.policy-page .text-muted {
  color: var(--text-light);
  margin-bottom: 3rem;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.policy-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-section p,
.policy-section li {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

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

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

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

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

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 4rem 0;
  }

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

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

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

  .contact-form-wrapper {
    padding: 2rem;
  }

  .limits-content {
    padding: 2rem;
  }

  .policy-page h1 {
    font-size: 2.25rem;
  }
}
