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

html, body {
  font-family: 'Open Sans', 'Roboto', sans-serif;
  background-color: #F8F9FA;
  color: #343A40;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Lato', sans-serif;
  color: #343A40;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 16px;
  line-height: 1.8;
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease;
  padding: 1rem 0;
  border-bottom: 1px solid transparent;
}

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

.navbar-brand {
  font-family: 'Montserrat', 'Lato', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #4CAF50 !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: #2196F3 !important;
}

.nav-link {
  font-weight: 500;
  color: #343A40 !important;
  transition: color 0.3s ease;
  margin-left: 1.5rem;
}

.nav-link:hover {
  color: #4CAF50 !important;
}

.nav-link.active {
  color: #4CAF50 !important;
  border-bottom: 2px solid #4CAF50;
  padding-bottom: 0.25rem;
}

.hero-block {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-block h1 {
  color: white;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

.hero-block h2 {
  color: #E8F5E9;
  font-size: 1.8rem;
  font-weight: 300;
  animation: fadeInUp 1s ease 0.2s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding: 100px 0;
  position: relative;
}

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

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

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

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

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.two-column img:hover {
  transform: translateY(-10px);
}

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

.card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #4CAF50;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card h3 {
  color: #4CAF50;
  margin-bottom: 1rem;
}

.card p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

.card-icon {
  width: 60px;
  height: 60px;
  background-color: #E8F5E9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.text-block {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.text-block h3 {
  color: #4CAF50;
  margin-bottom: 1rem;
}

.text-block ul {
  margin-left: 2.5rem;
}

.text-block li {
  margin-bottom: 0.75rem;
}

.faq-block {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #2196F3;
}

.faq-block h3 {
  color: #2196F3;
  cursor: pointer;
  transition: color 0.3s ease;
  margin-bottom: 1rem;
}

.faq-block h3:hover {
  color: #4CAF50;
}

.faq-answer {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  display: none;
}

.faq-answer.show {
  display: block;
}

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

.tips-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.tips-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.tips-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.tips-card h3 {
  color: #4CAF50;
  margin-bottom: 1rem;
}

.tips-card p {
  color: #666;
  font-size: 15px;
}

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

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 15px;
}

.btn-primary {
  background-color: #4CAF50;
  color: white;
}

.btn-primary:hover {
  background-color: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
  background-color: #2196F3;
  color: white;
}

.btn-secondary:hover {
  background-color: #0b7dda;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: #4CAF50;
  border: 2px solid #4CAF50;
}

.btn-outline:hover {
  background-color: #4CAF50;
  color: white;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

th {
  background-color: #4CAF50;
  color: white;
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #e0e0e0;
}

tr:hover {
  background-color: #f5f5f5;
}

footer {
  background-color: #343A40;
  color: white;
  padding: 4rem 0 1rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.footer-section h3 {
  color: #4CAF50;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

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

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.75rem;
  font-size: 14px;
}

.footer-section a:hover {
  color: #4CAF50;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 2rem;
  text-align: center;
  color: #999;
  font-size: 14px;
}

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

.cookie-banner.hide {
  display: none !important;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  color: #333;
}

.cookie-text a {
  color: #2196F3;
  text-decoration: none;
}

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

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

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

.cookie-btn-accept {
  background-color: #4CAF50;
  color: white;
}

.cookie-btn-accept:hover {
  background-color: #45a049;
}

.cookie-btn-reject {
  background-color: #e0e0e0;
  color: #333;
}

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

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

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero-block {
    height: 70vh;
  }

  .hero-block h1 {
    font-size: 2.5rem;
  }

  .hero-block h2 {
    font-size: 1.2rem;
  }

  .section {
    padding: 60px 0;
  }

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

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

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

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

  .nav-link {
    margin-left: 0.5rem;
  }

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}

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

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1rem;
  }

  p {
    font-size: 15px;
  }

  .section {
    padding: 40px 0;
  }

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

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

  .hero-block h2 {
    font-size: 1rem;
  }

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

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

  .cookie-text {
    font-size: 13px;
  }
}
