@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

:root {
  --primary-color: #424242;
  --text-dark: #2c2c2c;
  --text-light: #666666;
  --bg-light: #fafafa;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
  --transition: 0.35s ease;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  line-height: 1.3;
}

h1 {
  font-size: 56px;
  margin-bottom: 2rem;
}

h2 {
  font-size: 42px;
  margin-bottom: 1.8rem;
}

h3 {
  font-size: 28px;
  margin-bottom: 1.2rem;
}

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

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

a:hover {
  opacity: 0.7;
}

.header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #5a5a5a 100%);
  padding: 1.2rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px var(--shadow);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.logo:hover {
  opacity: 0.85;
}

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

.nav-menu a {
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-menu a:hover {
  opacity: 0.8;
  border-bottom: 2px solid var(--white);
}

.main-content {
  margin-top: 80px;
}

.section {
  padding: 5rem 0;
  position: relative;
}

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

.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #666666 100%);
  color: var(--white);
  padding: 8rem 0 6rem;
  text-align: center;
}

.hero-section h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: start;
  margin-bottom: 2rem;
}

.content-with-image.reverse {
  direction: rtl;
}

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

.content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
}

.content-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow);
}

.educational-note {
  background-color: #f5f5f5;
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.educational-note h3 {
  font-size: 20px;
  margin-bottom: 1rem;
}

.educational-note p {
  font-size: 15px;
  margin-bottom: 0.8rem;
}

.faq-item {
  background-color: var(--white);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 4px 20px var(--shadow);
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

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

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(66, 66, 66, 0.1);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow);
}

.footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, #5a5a5a 100%);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

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

.footer-section h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  display: block;
  margin-bottom: 0.5rem;
}

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

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

.disclaimer-banner {
  background-color: #f0f0f0;
  border: 2px solid var(--primary-color);
  padding: 1rem;
  text-align: center;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: auto;
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 2.5rem;
  border-radius: 8px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.close {
  color: var(--text-light);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.close:hover {
  color: var(--primary-color);
}

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

.cookie-banner p {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 15px;
}

.cookie-banner .btn {
  background-color: var(--white);
  color: var(--primary-color);
  padding: 0.7rem 1.5rem;
  font-size: 14px;
}

.cookie-banner .btn:hover {
  background-color: #f0f0f0;
}

@media (max-width: 992px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .content-with-image {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-section {
    padding: 6rem 0 4rem;
  }

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

  .nav-menu {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

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

  .modal-content {
    margin: 10% auto;
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  .contact-form {
    padding: 1.5rem;
  }
}
