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

:root {
  --primary-color: #3A606F;
  --accent-gold: #E8C547;
  --accent-blue: #8FAADC;
  --accent-coral: #D85A48;
  --light-bg: #F9F8F6;
  --dark-text: #2C2C2C;
  --border-light: #E8E6E1;
}

* {
  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(--dark-text);
  background-color: #FFFFFF;
}

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

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

a {
  color: var(--accent-coral);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 0.875rem 2.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

button:focus, button:active {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--accent-coral);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: var(--accent-gold);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: #D9B835;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #FFFFFF;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.logo:hover {
  color: var(--accent-coral);
}

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

nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-coral);
}

main {
  margin-top: 80px;
}

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

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

section {
  padding: 5rem 0;
}

.section-fullwidth {
  width: 100%;
  padding: 5rem 2rem;
}

.hero {
  background: linear-gradient(rgba(58, 96, 111, 0.5), rgba(58, 96, 111, 0.5)), url('images/hero.jpg') center/cover no-repeat;
  color: #FFFFFF;
  text-align: center;
  padding: 10rem 2rem;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

.intro-text {
  padding: 1rem;
}

.intro-text h2 {
  margin-bottom: 1.5rem;
}

.intro-text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

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

.card {
  background-color: var(--light-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1.5rem;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 1rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.editorial-panel {
  background-color: var(--light-bg);
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 6px solid var(--accent-gold);
}

.editorial-panel h2 {
  margin-bottom: 1.5rem;
}

.editorial-panel img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 6px;
  margin: 1.5rem 0;
}

.info-list {
  list-style: none;
}

.info-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  font-size: 1rem;
}

.info-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
}

.bullets {
  list-style: none;
  padding: 0;
}

.bullets li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
}

.bullets li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-coral);
  font-weight: bold;
  font-size: 1.5rem;
}

.benefits-text {
  background-color: #FFFFFF;
  padding: 2rem;
}

.benefits-text h2 {
  margin-bottom: 1.5rem;
}

.benefits-text ol {
  list-style: decimal;
  margin-left: 1.5rem;
}

.benefits-text li {
  margin-bottom: 1rem;
}

.faq-section {
  background-color: #FFFFFF;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
}

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

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent-coral);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-icon.active {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-text);
}

.faq-answer.active {
  display: block;
}

.contact-section {
  background-color: var(--light-bg);
  border-radius: 8px;
  padding: 2.5rem;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-details h2 {
  margin-bottom: 1.5rem;
}

.contact-details p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.contact-form {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 6px;
  border: 1px solid var(--border-light);
}

.contact-form h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.form-disclaimer {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary-color);
  color: #FFFFFF;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.form-submit:hover {
  background-color: var(--accent-coral);
}

footer {
  background-color: var(--primary-color);
  color: #FFFFFF;
  padding: 3rem 2rem 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.footer-section h4 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section p, .footer-section a {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
}

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

.footer-legal {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  font-size: 0.85rem;
}

.working-hours {
  margin-top: 1rem;
}

.policy-link {
  color: var(--accent-gold);
  cursor: pointer;
  transition: color 0.3s ease;
}

.policy-link:hover {
  color: #FFFFFF;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background-color: #FFFFFF;
  padding: 2.5rem;
  border-radius: 8px;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--primary-color);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  width: auto;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--accent-coral);
}

.modal h2 {
  margin-top: 0;
}

.modal p, .modal ul, .modal ol {
  font-size: 0.95rem;
  line-height: 1.6;
}

.modal ul, .modal ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.modal li {
  margin-bottom: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  color: #FFFFFF;
  padding: 1.5rem 2rem;
  z-index: 999;
  display: none;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}

.cookie-banner.active {
  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;
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.cookie-btn {
  padding: 0.625rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: var(--accent-gold);
  color: var(--primary-color);
}

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

.cookie-btn-decline {
  background-color: transparent;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}

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

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

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

.disclaimer-block {
  background-color: #F5F0E8;
  border-left: 4px solid var(--accent-coral);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark-text);
}

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

.section-title h2 {
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.cta-text-block {
  background-color: var(--light-bg);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 8px;
  margin: 2rem 0;
}

.cta-text-block h2 {
  margin-bottom: 1.5rem;
}

.cta-text-block p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

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

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

table thead {
  background-color: var(--primary-color);
  color: #FFFFFF;
}

table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
}

table tbody tr:hover {
  background-color: var(--light-bg);
}

.success-message {
  display: none;
  background-color: #D4EDDA;
  border: 1px solid #C3E6CB;
  color: #155724;
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 500;
}

.success-message.active {
  display: block;
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero {
    padding: 6rem 1rem;
    min-height: 400px;
  }

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

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

  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
  }

  nav a {
    font-size: 0.8rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

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

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .modal-content {
    padding: 1.5rem;
    max-width: 90%;
  }

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

  section {
    padding: 3rem 0;
  }

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

  button {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
  }
}

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

  h2 {
    font-size: 1.25rem;
  }

  body {
    font-size: 14px;
  }

  nav {
    padding: 0.75rem 1rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  nav ul {
    gap: 0.75rem;
  }

  .hero {
    padding: 4rem 1rem;
    min-height: 300px;
  }

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

  section {
    padding: 2rem 0;
  }

  .container, .container-wide {
    padding: 0 1rem;
  }

  button {
    padding: 0.625rem 1rem;
    font-size: 0.75rem;
  }
}
