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

:root {
  --primary-color: #20B2AA;
  --primary-hover: #1a9a92;
  --light-bg: #f8fafb;
  --border-color: #e8eaed;
  --text-dark: #202124;
  --text-light: #5f6368;
  --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 2px 8px rgba(0, 0, 0, 0.12);
  --transition: 0.28s ease-in-out;
}

html {
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-size: 2.73rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

h2 {
  font-size: 2.03rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

p {
  font-size: 1.08rem;
  line-height: 1.66;
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition);
}

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

button {
  font-family: inherit;
  font-size: 1.08rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-light);
}

button:hover {
  background-color: var(--primary-hover);
  box-shadow: var(--shadow-medium);
}

button:active {
  transform: scale(0.98);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-light);
  z-index: 1000;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color var(--transition);
}

.logo:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  transition: color var(--transition);
}

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

main {
  margin-top: 70px;
  padding: 0;
}

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

.section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-color);
}

.section:last-child {
  border-bottom: none;
}

.section-title {
  text-align: left;
  margin-bottom: 2rem;
}

.section-title h2 {
  margin-bottom: 1rem;
}

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

.section-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  object-fit: cover;
}

.image-left {
  order: -1;
}

.hero {
  background-image: linear-gradient(135deg, rgba(32, 178, 170, 0.1) 0%, rgba(32, 178, 170, 0.05) 100%);
  padding: 6rem 2rem;
  text-align: center;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  margin-top: 2rem;
  box-shadow: var(--shadow-medium);
}

.disclaimer {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  margin: 2rem 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

.disclaimer strong {
  color: var(--text-dark);
}

.faq-item {
  background-color: var(--light-bg);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-light);
}

.faq-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.faq-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

.blog-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}

.blog-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

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

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

.blog-card-content h3 {
  margin-bottom: 0.5rem;
}

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

.blog-card-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 500;
  transition: color var(--transition);
}

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

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  transition: background-color var(--transition);
  text-decoration: none;
  margin-top: 1rem;
}

.cta-button:hover {
  background-color: var(--primary-hover);
  text-decoration: none;
}

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

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

footer {
  background-color: var(--light-bg);
  border-top: 1px solid var(--border-color);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

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

.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.footer-section p,
.footer-section a {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: block;
  color: var(--text-light);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  z-index: 999;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-light);
}

.cookie-text strong {
  color: var(--text-dark);
}

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

.cookie-buttons button {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
}

.cookie-buttons .cookie-accept {
  background-color: var(--primary-color);
}

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

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

.cookie-buttons .cookie-decline:hover {
  background-color: #d8dce0;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  nav {
    padding: 0.75rem 1rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 1rem;
  }

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

  .image-left {
    order: 0;
  }

  .hero {
    padding: 3rem 1rem;
  }

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

  .container {
    padding: 0 1rem;
  }

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

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
  }

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

  .cookie-buttons button {
    width: 100%;
  }

  main {
    margin-top: 60px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 0.5rem;
    font-size: 0.85rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .section {
    padding: 2rem 0;
  }

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