:root {
  --accent-color: #424242;
  --bg-light: #f5f5f5;
  --text-dark: #212121;
  --text-medium: #757575;
  --white: #ffffff;
  --border-light: #e0e0e0;
}

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

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

.header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 15px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.7;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent-color);
}

.main-content {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

.hero-section {
  background-color: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section p {
  font-size: 1.25rem;
  color: var(--text-medium);
  max-width: 800px;
  margin: 0 auto 2rem;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.content-section {
  background-color: var(--white);
  padding: 4rem 0;
  margin: 3rem 0;
}

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 2rem 0 1rem;
}

.content-section p {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.content-section ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.content-section li {
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.content-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.content-image-left {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
}

.content-image-right {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.disclaimer-box {
  background-color: #f9f9f9;
  border-left: 4px solid var(--accent-color);
  padding: 2rem;
  margin: 3rem 0;
}

.disclaimer-box h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

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

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #303030;
  transform: translateY(-2px);
  color: var(--white);
  text-decoration: none;
}

.faq-section {
  background-color: var(--white);
  padding: 4rem 0;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.faq-item h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.contact-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  margin: 2rem auto;
}

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

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

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

.contact-info {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.contact-info h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

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

.footer h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

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

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

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 2px solid var(--accent-color);
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin: 0 0 1rem;
  color: var(--text-dark);
}

.cookie-banner button {
  background-color: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cookie-banner button:hover {
  background-color: #303030;
}

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
}

table th,
table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

table th {
  background-color: var(--bg-light);
  font-weight: 600;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .nav-menu {
    gap: 1rem;
    font-size: 0.9rem;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .content-section h2 {
    font-size: 1.75rem;
  }
  
  .content-image-left,
  .content-image-right {
    float: none;
    margin: 1.5rem auto;
    display: block;
  }
  
  .footer h4 {
    margin-top: 1.5rem;
  }
}

@media (max-width: 576px) {
  .header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-section {
    padding: 3rem 0;
  }
}
