@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Lora:wght@400;600&display=swap');

:root {
  --primary: #34495E;
  --accent-orange: #E67E22;
  --accent-green: #2ECC71;
  --accent-purple: #9B59B6;
  --light-gray: #ECF0F1;
  --silver: #BDC3C7;
  --asbestos: #7F8C8D;
  --white: #FFFFFF;
  --dark: #2C3E50;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--primary);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.8rem;
  margin-top: 80px;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

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

p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

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

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

a:hover {
  border-bottom-color: var(--accent-orange);
  color: var(--accent-orange);
}

header {
  background-color: var(--white);
  padding: 1.5rem 0;
  border-bottom: 2px solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

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

nav {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 2px solid transparent;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-section {
  padding: 120px 2rem;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.section {
  padding: 100px 2rem;
  background-color: var(--white);
}

.section:nth-child(even) {
  background-color: #FAFAF8;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

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

.section-text {
  flex: 1;
}

.section-image {
  flex: 1;
}

.section-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}

.card h3 {
  color: var(--primary);
  margin-bottom: 0.8rem;
  margin-top: 0;
}

.card p {
  font-size: 0.95rem;
  color: var(--asbestos);
  margin-bottom: 1rem;
}

button, .btn {
  font-family: 'Montserrat', sans-serif;
  padding: 12px 32px;
  border: 2px solid var(--accent-orange);
  background-color: transparent;
  color: var(--accent-orange);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
}

button:hover, .btn:hover {
  background-color: var(--accent-orange);
  color: var(--white);
}

button.btn-primary, .btn.btn-primary {
  background-color: var(--accent-orange);
  color: var(--white);
}

button.btn-primary:hover, .btn.btn-primary:hover {
  background-color: #D35400;
  border-color: #D35400;
}

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

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--silver);
  border-radius: 3px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--primary);
  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(--accent-orange);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

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

footer {
  background-color: var(--primary);
  color: var(--light-gray);
  padding: 60px 2rem 30px;
  margin-top: 100px;
}

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

.footer-section h3 {
  color: var(--light-gray);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

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

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: var(--light-gray);
  border-bottom: 1px solid transparent;
}

.footer-section a:hover {
  color: var(--accent-orange);
  border-bottom-color: var(--accent-orange);
}

.footer-bottom {
  border-top: 1px solid var(--asbestos);
  padding-top: 2rem;
  text-align: center;
  color: var(--asbestos);
  font-size: 0.9rem;
}

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

.disclaimer-box h4 {
  color: var(--accent-orange);
  margin-top: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--light-gray);
  padding: 1.5rem 2rem;
  z-index: 1000;
  display: none;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.active {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

.cookie-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

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

.cookie-btn-accept:hover {
  background-color: #27AE60;
}

.cookie-btn-decline {
  background-color: transparent;
  color: var(--light-gray);
  border: 1px solid var(--light-gray);
}

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

.cookie-btn-learn {
  background-color: transparent;
  color: var(--accent-orange);
  border: 1px solid var(--accent-orange);
}

.cookie-btn-learn:hover {
  background-color: var(--accent-orange);
  color: var(--white);
}

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

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  nav {
    gap: 1.5rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .hero-section,
  .section-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 60px 1rem;
  }

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

  .header-content {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  nav {
    width: 100%;
    justify-content: center;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cookie-banner.active {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .cookie-buttons {
    flex-wrap: wrap;
  }
}

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

  body {
    font-size: 14px;
  }

  .container, .hero-section, .section {
    padding: 40px 1rem;
  }

  .hero-section, .section-content {
    padding: 40px 1rem;
  }

  nav {
    gap: 1rem;
  }

  nav a {
    font-size: 0.75rem;
  }
}
