:root {
  --accent-color: #455A64;
  --text-dark: #263238;
  --text-medium: #546E7A;
  --text-light: #90A4AE;
  --background-white: #FFFFFF;
  --background-light: #FAFAFA;
  --border-color: #ECEFF1;
}

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

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

header {
  background-color: var(--background-white);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: var(--text-medium);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

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

.hero-section {
  background-color: var(--background-light);
  padding: 4rem 15px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

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

.content-section {
  padding: 4rem 15px;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.section-header h2 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

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

.two-column-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

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

.content-text p {
  margin-bottom: 1.5rem;
  color: var(--text-medium);
}

.content-text ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

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

.content-image-left {
  float: left;
  margin: 0 2rem 1.5rem 0;
}

.content-image-right {
  float: right;
  margin: 0 0 1.5rem 2rem;
}

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

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

.info-table th {
  background-color: var(--accent-color);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 400;
}

.info-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-medium);
}

.info-table tr:hover {
  background-color: var(--background-light);
}

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

.disclaimer-box h3 {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.disclaimer-box p {
  color: var(--text-medium);
  margin-bottom: 0.75rem;
}

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

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

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--text-medium);
}

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

.cta-section h2 {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

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

.btn-primary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary:hover {
  opacity: 0.85;
  color: white;
  text-decoration: none;
}

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

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  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 {
  resize: vertical;
  min-height: 150px;
}

.contact-info {
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

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

footer {
  background-color: var(--accent-color);
  color: white;
  padding: 3rem 15px 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.footer-section p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.8;
}

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

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

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
  opacity: 0.8;
}

.policy-page {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem 15px;
}

.policy-page h1 {
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.policy-page h2 {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-page h3 {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-page p {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.policy-page ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.policy-page li {
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

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

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

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

.cookie-text a {
  color: var(--accent-color);
  text-decoration: underline;
}

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

.btn-accept {
  padding: 0.75rem 1.5rem;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.btn-accept:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-menu {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .content-section {
    padding: 2.5rem 15px;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .content-image-left,
  .content-image-right {
    float: none;
    margin: 0 auto 1.5rem;
    display: block;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-accept {
    width: 100%;
  }
}

@media (min-width: 769px) {
  .two-column-layout {
    grid-template-columns: 1fr 1fr;
  }
}
