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

:root {
  --primary-light-blue: #AEC6CF;
  --accent-light-green: #77DD77;
  --accent-orange: #FFB347;
  --accent-slate: #6A5ACD;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f9f9f9;
  --bg-white: #ffffff;
  --border-light: #e0e0e0;
}

html, body {
  font-family: 'Lora', 'Georgia', serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

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

p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

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

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

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

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

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-slate);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

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

/* MAIN CONTENT */
main {
  margin-top: 70px;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/img1-hero.jpg');
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--bg-white);
}

.hero-content {
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  color: var(--bg-white);
  margin-bottom: 20px;
  font-size: 3rem;
}

.hero p {
  color: var(--bg-white);
  font-size: 1.2rem;
}

/* SECTIONS */
section {
  padding: 100px 20px;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  margin-bottom: 15px;
  color: var(--accent-slate);
}

/* TWO-COLUMN LAYOUT */
.row-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.col-text, .col-image {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.col-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* CARDS LAYOUT */
.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-light-blue);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  border-left-color: var(--accent-slate);
}

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

.card h3 {
  margin-bottom: 15px;
  color: var(--accent-slate);
}

/* SINGLE COLUMN WIDE */
.wide-section {
  background-color: var(--bg-light);
  padding: 80px 20px;
}

.wide-content {
  max-width: 900px;
  margin: 0 auto;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-slate);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--accent-orange);
  transform: scale(1.05);
}

.btn-secondary {
  background-color: var(--primary-light-blue);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: var(--accent-light-green);
}

/* FORM */
.form-container {
  max-width: 600px;
  margin: 30px auto;
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 8px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  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-slate);
  box-shadow: 0 0 0 3px rgba(106, 90, 205, 0.1);
}

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

.form-disclaimer {
  background-color: #fffacd;
  padding: 15px;
  border-radius: 6px;
  border-left: 4px solid var(--accent-orange);
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* FAQ */
.faq-item {
  background-color: var(--bg-light);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background-color: var(--primary-light-blue);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
}

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

.faq-answer {
  display: none;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-light);
  color: var(--text-light);
  line-height: 1.8;
}

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

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

/* DISCLAIMER SECTION */
.disclaimer-box {
  background-color: #f0f8ff;
  border-left: 5px solid var(--accent-slate);
  padding: 20px 25px;
  border-radius: 6px;
  margin: 40px 0;
}

.disclaimer-box h4 {
  color: var(--accent-slate);
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.disclaimer-box p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* FOOTER */
footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 60px 20px 20px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

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

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #aaaaaa;
  font-size: 0.9rem;
  cursor: pointer;
}

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

.footer-contact {
  font-size: 0.9rem;
  line-height: 1.8;
}

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

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

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

.modal-content {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 8px;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-header h2 {
  margin: 0;
  color: var(--accent-slate);
}

.close-modal {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

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

.modal-body {
  color: var(--text-light);
  line-height: 1.8;
}

.modal-body h3 {
  color: var(--accent-slate);
  margin-top: 20px;
  margin-bottom: 10px;
}

.modal-body p {
  margin-bottom: 15px;
}

.modal-body ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.modal-body li {
  margin-bottom: 8px;
}

/* COOKIE BANNER */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 20px;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.show {
  display: block;
}

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

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

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.cookie-btn-reject {
  background-color: transparent;
  color: var(--bg-white);
  border: 1px solid var(--bg-white);
}

.cookie-btn-reject:hover {
  border-color: var(--accent-slate);
  color: var(--accent-slate);
}

/* THANK YOU MESSAGE */
.thank-you-message {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--accent-light-green);
  color: var(--text-dark);
  padding: 30px 50px;
  border-radius: 8px;
  z-index: 2500;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.thank-you-message.show {
  display: block;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

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

  .row-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }

  nav ul {
    gap: 15px;
  }

  nav a {
    font-size: 0.85rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .header-container {
    height: 60px;
  }

  main {
    margin-top: 60px;
  }

  nav ul {
    gap: 10px;
  }

  nav a {
    font-size: 0.75rem;
  }

  .hero {
    height: 400px;
  }

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

  section {
    padding: 60px 15px;
  }

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

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

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

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

  .cookie-btn {
    width: 100%;
  }

  .modal-content {
    width: 90%;
    padding: 25px;
  }

  .form-container {
    padding: 25px 15px;
  }
}

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

  h2 {
    font-size: 1rem;
  }

  h3 {
    font-size: 0.95rem;
  }

  p {
    font-size: 0.9rem;
  }

  .hero {
    height: 300px;
  }

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

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

  section {
    padding: 40px 10px;
  }

  .footer-section h3 {
    font-size: 0.9rem;
  }

  .footer-section a {
    font-size: 0.8rem;
  }

  .modal-content {
    padding: 20px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}
