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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9;
  color: #37474F;
  background-color: #F8F9FA;
}

h1 {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #26A69A;
}

h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 40px;
  line-height: 1.2;
}

h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  color: #37474F;
}

p {
  margin-bottom: 20px;
  color: #37474F;
}

a {
  color: #26A69A;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1e7f78;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(248, 249, 250, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background-color: rgba(248, 249, 250, 1);
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 22px;
  font-weight: 800;
  color: #37474F;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 600;
  color: #37474F;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #26A69A;
}

.container-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 150px 0;
  margin: 0;
}

.section.hero {
  padding-top: 200px;
  padding-bottom: 100px;
  background-color: #FFFFFF;
  margin-top: 80px;
}

.section.light {
  background-color: #F8F9FA;
}

.section.white {
  background-color: #FFFFFF;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
  display: block;
}

.text-section {
  display: flex;
  gap: 80px;
  align-items: center;
}

.text-section.reverse {
  flex-direction: row-reverse;
}

.text-content {
  flex: 0 0 35%;
}

.image-content {
  flex: 0 0 65%;
}

.image-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.quote {
  font-size: 25px;
  font-weight: 300;
  font-style: italic;
  color: #26A69A;
  margin: 40px 0;
  padding: 30px 0;
  border-top: 2px solid #D7CCC8;
  border-bottom: 2px solid #D7CCC8;
}

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

.card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  transition: all 0.5s ease;
}

.card:hover {
  border-color: #26A69A;
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(38, 166, 154, 0.1);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 15px;
}

.card p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.cta-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #26A69A;
  border-bottom: 2px solid #26A69A;
  padding-bottom: 3px;
  transition: all 0.3s ease;
}

.cta-link:hover {
  border-color: #1e7f78;
  color: #1e7f78;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  border: 2px solid #26A69A;
  background-color: transparent;
  color: #26A69A;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 20px;
}

.btn:hover {
  background-color: #26A69A;
  color: #FFFFFF;
}

.btn.primary {
  background-color: #26A69A;
  color: #FFFFFF;
}

.btn.primary:hover {
  background-color: #1e7f78;
  border-color: #1e7f78;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
  background-color: #F8F9FA;
  font-weight: 600;
  color: #37474F;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.faq-container {
  max-width: 900px;
  margin: 40px 0;
}

.faq-item {
  margin-bottom: 30px;
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 25px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F8F9FA;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #F0F2F4;
}

.faq-question.active {
  background-color: #E8F5F3;
}

.faq-toggle {
  font-size: 20px;
  color: #26A69A;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 25px;
}

.faq-answer.active {
  max-height: 500px;
  padding: 0 25px 25px 25px;
}

.faq-answer p {
  margin-bottom: 15px;
}

footer {
  background-color: #37474F;
  color: #FFFFFF;
  padding: 80px 40px 30px;
  margin-top: 150px;
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-column a {
  display: block;
  font-size: 14px;
  color: #26A69A;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #1e7f78;
}

.footer-disclaimer {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #37474F;
  padding: 30px 40px;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.cookie-banner.active {
  max-height: 300px;
}

.cookie-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-text {
  flex: 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-button {
  padding: 10px 25px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background-color: #26A69A;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #1e7f78;
}

.cookie-reject {
  background-color: transparent;
  color: #26A69A;
  border: 2px solid #26A69A;
}

.cookie-reject:hover {
  border-color: #1e7f78;
  color: #1e7f78;
}

.cookie-link {
  color: #26A69A;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-link:hover {
  color: #1e7f78;
}

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

  h2 {
    font-size: 32px;
  }

  .header-container {
    padding: 15px 20px;
  }

  .nav-menu {
    gap: 20px;
    font-size: 13px;
  }

  .container-main {
    padding: 0 20px;
  }

  .section {
    padding: 80px 0;
  }

  .section.hero {
    padding-top: 130px;
  }

  .text-section {
    flex-direction: column;
    gap: 40px;
  }

  .text-section.reverse {
    flex-direction: column;
  }

  .text-content {
    flex: 1;
  }

  .image-content {
    flex: 1;
  }

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

  .footer-container {
    gap: 40px;
  }

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

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

  .cookie-button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .section {
    padding: 50px 0;
  }

  .card-grid {
    gap: 20px;
  }

  body {
    font-size: 15px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px;
    font-size: 13px;
  }

  .nav-menu {
    gap: 15px;
    font-size: 12px;
  }
}
