:root {
  --color-primary: #4a5d4e;
  --color-secondary: #6b8269;
  --color-dark: #3a3f42;
  --color-light: #f5f6f7;
  --color-white: #ffffff;
  --color-border: #d4d7d9;
  --color-text: #2c3135;
  --color-text-light: #5f6368;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
}

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

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

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

p {
  margin-bottom: 1rem;
  color: var(--color-text);
}

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

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

a:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

header {
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-dark);
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 40px;
  margin-right: 12px;
}

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

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

.hero-section {
  margin-top: 76px;
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-light);
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--color-white);
  background-color: rgba(58, 63, 66, 0.85);
  padding: 3rem 2rem;
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
}

.hero-content h1 {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--color-light);
  margin-bottom: 0;
}

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

.content-section:nth-child(even) {
  background-color: var(--color-light);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.image-text-block {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.image-text-block img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.text-content {
  flex: 1;
}

.disclaimer-box {
  background-color: #fef9e7;
  border-left: 4px solid var(--color-secondary);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.disclaimer-box p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

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

.info-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.info-card h3 {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.info-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-item h3 {
  color: var(--color-primary);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.cta-section {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 3rem 0;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--color-light);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.btn-custom {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.btn-custom:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.form-section {
  background-color: var(--color-light);
  padding: 3rem 0;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(74, 93, 78, 0.1);
}

footer {
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: 3rem 0 1.5rem;
}

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

.footer-section h4 {
  color: var(--color-white);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--color-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

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

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

.footer-disclaimer {
  background-color: rgba(255,255,255,0.05);
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  margin-top: 1rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  margin-bottom: 1rem;
  color: var(--color-light);
}

.cookie-banner .btn-custom {
  margin-right: 0.5rem;
}

.page-header {
  background-color: var(--color-light);
  padding: 6rem 0 3rem;
  margin-top: 76px;
  text-align: center;
}

.page-header h1 {
  color: var(--color-dark);
}

.page-content {
  padding: 3rem 0;
  max-width: 900px;
  margin: 0 auto;
}

.page-content h2 {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px solid var(--color-border);
}

.page-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    height: 400px;
  }
  
  .hero-content {
    padding: 2rem 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .content-section {
    padding: 2.5rem 0;
  }
  
  .image-text-block {
    flex-direction: column;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .navbar-brand img {
    height: 32px;
  }
  
  .btn-custom {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
