:root {
  --primary-bg: #F8F8F8;
  --accent-teal: #A7C5C5;
  --accent-purple: #E0BBE4;
  --accent-yellow: #FFD272;
  --text-dark: #2C2C2C;
  --text-light: #5A5A5A;
  --white: #FFFFFF;
  --border-light: #E8E8E8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
}

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

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.nav-link {
  color: var(--text-dark) !important;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-teal) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-teal);
  transition: width 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.2rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.6rem;
  margin-top: 1.5rem;
}

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

.section {
  padding: 4rem 0;
}

.section-full {
  width: 100%;
}

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

.hero {
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  min-height: 500px;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

.two-column-text {
  padding-right: 2rem;
}

.two-column-image {
  text-align: center;
}

.two-column-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(167, 197, 197, 0.2);
  transform: translateY(-4px);
  border-color: var(--accent-teal);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--accent-teal);
}

.card-accent {
  height: 4px;
  background-color: var(--accent-teal);
  border-radius: 2px;
  margin-bottom: 1rem;
}

.card:nth-child(2) .card-accent {
  background-color: var(--accent-purple);
}

.card:nth-child(3) .card-accent {
  background-color: var(--accent-yellow);
}

.card:nth-child(4) .card-accent {
  background-color: var(--accent-teal);
}

.btn-primary {
  background-color: var(--accent-teal);
  color: var(--white);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #8fab8f;
  box-shadow: 0 6px 20px rgba(167, 197, 197, 0.3);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: var(--text-dark);
  color: var(--white);
}

.btn-text {
  background-color: transparent;
  color: var(--accent-teal);
  border: none;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
}

.btn-text::after {
  content: '→';
  margin-left: 0.5rem;
  transition: margin-left 0.3s ease;
}

.btn-text:hover::after {
  margin-left: 1rem;
}

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

.features-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li::before {
  content: '✓';
  color: var(--accent-teal);
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: -2px;
}

.accordion {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  margin: 2rem 0;
}

.accordion-item {
  border-bottom: 1px solid var(--border-light);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  padding: 1.5rem;
  background-color: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  background-color: var(--primary-bg);
  color: var(--accent-teal);
}

.accordion-header.active {
  background-color: var(--primary-bg);
  color: var(--accent-teal);
}

.accordion-toggle {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-toggle {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--white);
}

.accordion-content.show {
  max-height: 500px;
  padding: 1.5rem;
}

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

.blog-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.blog-card p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--accent-teal);
  margin-bottom: 1rem;
}

.footer-section a,
.footer-section p {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-teal);
}

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

.footer-disclaimer {
  background-color: var(--accent-teal);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  text-align: center;
  font-weight: 600;
}

.disclaimer-box {
  background-color: var(--primary-bg);
  border-left: 4px solid var(--accent-teal);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  margin-top: 0;
  color: var(--accent-teal);
}

.cookie-banner {
  position: fixed;
  bottom: -400px;
  left: 0;
  right: 0;
  background-color: var(--white);
  padding: 2rem;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
  z-index: 999;
  transition: bottom 0.4s ease;
  border-top: 1px solid var(--border-light);
}

.cookie-banner.show {
  bottom: 0;
}

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

.cookie-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.cookie-accept:hover {
  background-color: #8fab8f;
}

.cookie-decline {
  background-color: var(--border-light);
  color: var(--text-dark);
}

.cookie-decline:hover {
  background-color: #ddd;
}

.cookie-link {
  color: var(--accent-teal);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-link:hover {
  text-decoration: underline;
}

.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: 0.8rem;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(167, 197, 197, 0.1);
}

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

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.contact-item h3 {
  margin-bottom: 0.5rem;
}

.contact-item p {
  margin: 0.5rem 0;
  color: var(--text-light);
}

.success-message {
  background-color: #e8f5e9;
  color: #2e7d32;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid #4caf50;
}

.button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

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

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .hero-content {
    flex-direction: column;
    gap: 2rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-column-text {
    padding-right: 0;
  }

  .cookie-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .section-container {
    padding: 0 1rem;
  }

  .section {
    padding: 2rem 0;
  }

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

  .blog-cards {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .navbar-brand {
    font-size: 1.4rem;
  }
}
