@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;700&family=Source+Serif+Pro:wght@400;600&display=swap');

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

html, body {
  font-family: 'Source Serif Pro', serif;
  color: #333;
  background-color: #fef9f5;
  line-height: 1.90;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: 0.6px;
}

h2 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
}

h3 {
  font-weight: 500;
  font-size: 1.5rem;
}

button, .btn {
  font-family: 'Source Serif Pro', serif;
  font-weight: 600;
  border-radius: 4px;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

body {
  max-width: 100%;
}

.container-main {
  max-width: 1640px;
  margin: 0 auto;
}

.content-wrapper {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 120px;
}

@media (max-width: 1200px) {
  .content-wrapper {
    padding: 0 60px;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    padding: 0 20px;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
}

header {
  background-color: #fef9f5;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

header.scrolled {
  padding: 10px 0;
  background-color: rgba(254, 249, 245, 0.95);
}

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

@media (max-width: 768px) {
  .header-content {
    padding: 0 20px;
  }
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #6b705c;
  text-decoration: none;
  letter-spacing: 0.6px;
}

.nav-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-buttons a {
  color: #6b705c;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-buttons a:hover {
  color: #e07a5f;
}

@media (max-width: 768px) {
  .nav-buttons {
    gap: 10px;
  }
  
  .nav-buttons a {
    font-size: 0.85rem;
  }
}

section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
}

.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 40px;
  border-radius: 0;
}

@media (max-width: 768px) {
  .hero-image {
    height: 250px;
  }
}

.hero-content {
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #6b705c;
  letter-spacing: 0.6px;
}

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

.diptych {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.diptych.reverse {
  direction: rtl;
}

.diptych.reverse > * {
  direction: ltr;
}

.diptych-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 0;
}

@media (max-width: 768px) {
  .diptych {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .diptych-image {
    height: 250px;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 60px 0;
}

.card {
  background-color: #f4ede4;
  padding: 40px;
  border-radius: 0;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.card:hover {
  transform: scale(1.05);
  border-color: #e07a5f;
}

.card h3 {
  margin-bottom: 15px;
  color: #6b705c;
}

.card p {
  color: #555;
}

@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .card {
    padding: 25px;
  }
}

.content-section-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 30px;
}

.table-wrapper {
  overflow-x: auto;
  margin: 40px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

table th {
  background-color: #e07a5f;
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e0d5c7;
}

table tr:hover {
  background-color: #faf5f0;
}

.quote-section {
  text-align: center;
  padding: 60px 40px;
  background-color: #f4ede4;
  margin: 60px 0;
  border-radius: 0;
  font-style: italic;
  font-size: 1.3rem;
  color: #6b705c;
}

@media (max-width: 768px) {
  .quote-section {
    padding: 40px 20px;
    font-size: 1.1rem;
  }
}

.accordion {
  margin: 40px 0;
}

.accordion-item {
  background-color: #f4ede4;
  margin-bottom: 15px;
  border-radius: 0;
}

.accordion-header {
  background-color: #f4ede4;
  border: none;
  padding: 20px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: 'Source Serif Pro', serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-left: 3px solid #e07a5f;
  color: #333;
}

.accordion-header:hover {
  background-color: #ebe3d8;
}

.accordion-header.active {
  background-color: #ebe3d8;
}

.accordion-content {
  display: none;
  padding: 0 20px 20px;
  color: #555;
  line-height: 1.90;
}

.accordion-content.show {
  display: block;
}

footer {
  background-color: #f4ede4;
  padding: 60px 0 30px;
  margin-top: 100px;
  border-top: 1px solid #e0d5c7;
}

.footer-content {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 120px;
}

@media (max-width: 768px) {
  .footer-content {
    padding: 0 20px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #6b705c;
}

.footer-section p, .footer-section a {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #e07a5f;
}

.footer-bottom {
  border-top: 1px solid #e0d5c7;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.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-y: auto;
}

.modal.show {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.modal-content {
  background-color: #fef9f5;
  margin-top: 50px;
  padding: 40px;
  border-radius: 0;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content h2 {
  margin-bottom: 20px;
  color: #6b705c;
}

.modal-content p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.90;
}

.modal-content ul, .modal-content ol {
  margin: 20px 0 20px 20px;
  color: #555;
}

.modal-content li {
  margin-bottom: 10px;
}

.close-modal {
  color: #6b705c;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
}

.close-modal:hover {
  color: #e07a5f;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f4ede4;
  padding: 20px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  color: #555;
}

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

.cookie-btn {
  background-color: #6b705c;
  color: white;
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 2px;
}

.cookie-btn:hover {
  background-color: #5a5e50;
}

.cookie-btn.accept {
  background-color: #e07a5f;
}

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

.cookie-btn.learn {
  background-color: transparent;
  color: #6b705c;
  border: 1px solid #6b705c;
}

.cookie-btn.learn:hover {
  background-color: #f0e9e0;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .cookie-buttons {
    width: 100%;
    gap: 10px;
  }
  
  .cookie-btn {
    flex: 1;
  }
}

.cta-button {
  background-color: #e07a5f;
  color: white;
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  margin-top: 20px;
}

.cta-button:hover {
  background-color: #d66a4f;
  transform: translateY(-2px);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #6b705c;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0d5c7;
  border-radius: 2px;
  font-family: 'Source Serif Pro', serif;
  font-size: 0.95rem;
  background-color: white;
  color: #333;
}

.form-group input:focus {
  outline: none;
  border-color: #e07a5f;
  box-shadow: 0 0 4px rgba(224, 122, 95, 0.3);
}

.form-disclaimer {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 20px;
  line-height: 1.6;
}

.disclaimer-block {
  background-color: #f4ede4;
  padding: 20px;
  margin: 30px 0;
  border-left: 3px solid #e07a5f;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
}

.educational-notice {
  text-align: center;
  padding: 20px;
  background-color: #f4ede4;
  margin: 20px 0;
  font-size: 0.9rem;
  color: #6b705c;
  font-weight: 600;
}

.fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.thank-you-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
}

.thank-you-modal.show {
  display: flex;
}

.thank-you-content {
  background-color: #fef9f5;
  padding: 60px 40px;
  border-radius: 0;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.thank-you-content h2 {
  color: #6b705c;
  margin-bottom: 20px;
}

.thank-you-content p {
  color: #555;
  margin-bottom: 30px;
}

.thank-you-close {
  background-color: #e07a5f;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-family: 'Source Serif Pro', serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.thank-you-close:hover {
  background-color: #d66a4f;
}
