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

:root {
  --dark-slate-gray: #2F4F4F;
  --light-steel-blue: #B0C4DE;
  --sandy-brown: #F4A460;
  --forest-green: #228B22;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --light-gray: #EEEEEE;
  --dark-gray: #333333;
  --very-dark: #1A1A1A;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--very-dark);
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.2rem;
  margin-top: 64px;
}

h3 {
  font-size: 1.5rem;
  margin-top: 32px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--dark-gray);
  line-height: 1.8;
}

a {
  color: var(--dark-slate-gray);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--sandy-brown);
}

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

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  line-height: 1.8;
}

header {
  background-color: var(--dark-slate-gray);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light-steel-blue);
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 40px;
  height: 40px;
}

.logo a {
  color: var(--light-steel-blue);
}

.logo a:hover {
  color: var(--sandy-brown);
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.active {
  color: var(--sandy-brown);
  border-bottom-color: var(--sandy-brown);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
  border-bottom: 1px solid var(--light-gray);
}

section:last-of-type {
  border-bottom: none;
}

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

.section-content.reverse {
  direction: rtl;
}

.section-content.reverse > * {
  direction: ltr;
}

.section-text {
  flex: 1;
}

.section-image {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero {
  background: linear-gradient(135deg, var(--dark-slate-gray) 0%, #3d5f5f 100%);
  color: var(--white);
  padding: 120px 0;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: 3.5rem;
}

.hero p {
  color: var(--light-steel-blue);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 32px;
}

.disclaimer-box {
  background-color: var(--off-white);
  border-left: 4px solid var(--sandy-brown);
  padding: 24px;
  margin: 48px 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  margin-top: 0;
  color: var(--dark-slate-gray);
}

.disclaimer-box p {
  margin-bottom: 8px;
  color: var(--dark-gray);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--dark-slate-gray);
  color: var(--white);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--dark-slate-gray);
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--sandy-brown);
  border-color: var(--sandy-brown);
  color: var(--very-dark);
}

.btn-secondary {
  background-color: transparent;
  color: var(--dark-slate-gray);
  border: 2px solid var(--dark-slate-gray);
}

.btn-secondary:hover {
  background-color: var(--dark-slate-gray);
  color: var(--white);
}

footer {
  background-color: var(--dark-slate-gray);
  color: var(--white);
  padding: 64px 0 24px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--light-steel-blue);
}

.footer-section p {
  color: #b0b0b0;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-section a {
  color: #b0b0b0;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 8px;
}

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

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer-bottom {
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-slate-gray);
  color: var(--white);
  padding: 24px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--light-steel-blue);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: var(--sandy-brown);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background-color: var(--forest-green);
  color: var(--white);
}

.cookie-accept:hover {
  background-color: #1a6b1a;
}

.cookie-decline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 24px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--very-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--dark-slate-gray);
  box-shadow: 0 0 0 3px rgba(47, 79, 79, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

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

.card {
  background-color: var(--off-white);
  padding: 32px;
  border-radius: 8px;
  border-top: 4px solid var(--sandy-brown);
  transition: all 0.3s ease;
}

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

.card h3 {
  margin-top: 0;
  color: var(--dark-slate-gray);
}

.card p {
  color: var(--dark-gray);
  margin-bottom: 16px;
}

.card a {
  color: var(--dark-slate-gray);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card a:hover {
  color: var(--sandy-brown);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .header-container {
    height: auto;
    padding: 16px 20px;
    flex-wrap: wrap;
  }

  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--dark-slate-gray);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }

  nav.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .section-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-content.reverse {
    direction: ltr;
  }

  section {
    padding: 48px 0;
  }

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

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }

  .footer-grid {
    gap: 32px;
  }
}
