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

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

body {
  font-family: 'Lato', sans-serif;
  color: #5A6A80;
  background-color: #FFFFFF;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #5A6A80;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #5A6A80;
}

a {
  color: #9BBFE0;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

a:hover {
  color: #78858B;
}

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

/* HEADER */
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.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 40px;
}

nav.navbar .logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #5A6A80;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

nav.navbar .logo:hover {
  color: #9BBFE0;
}

nav.navbar .nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

nav.navbar .nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #5A6A80;
  transition: color 0.3s ease-in-out;
}

nav.navbar .nav-menu a:hover {
  color: #9BBFE0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #5A6A80;
  margin: 5px 0;
  transition: 0.3s;
}

/* HERO SECTION */
.hero {
  margin-top: 80px;
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(245, 245, 245, 0.15);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  max-width: 800px;
  padding: 0 40px;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
  color: #F5F5F5;
  font-size: 1.2rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

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

section.light-bg {
  background-color: #F5F5F5;
}

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

.row-two-col.reverse {
  direction: rtl;
}

.row-two-col.reverse > * {
  direction: ltr;
}

.col-text h2 {
  margin-top: 0;
}

.col-text h3 {
  margin-top: 1.5rem;
}

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

/* CARDS GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #9BBFE0, #78858B);
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #FFFFFF;
}

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

.card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ACCORDION */
.accordion {
  background: #F5F5F5;
  border-radius: 8px;
  margin-top: 40px;
}

.accordion-item {
  border-bottom: 1px solid #E0E0E0;
  padding: 0;
}

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

.accordion-header {
  padding: 25px 30px;
  background: #FFFFFF;
  cursor: pointer;
  font-weight: 600;
  color: #5A6A80;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease-in-out;
}

.accordion-header:hover {
  background: #F9F9F9;
}

.accordion-header.active {
  background: #F5F5F5;
  color: #9BBFE0;
}

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

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

.accordion-content {
  display: none;
  padding: 0 30px 25px;
  background: #FFFFFF;
  color: #5A6A80;
  font-size: 0.95rem;
  line-height: 1.8;
}

.accordion-item.active .accordion-content {
  display: block;
}

/* TABLE */
.table-responsive {
  overflow-x: auto;
  margin: 40px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

table thead {
  background: linear-gradient(135deg, #5A6A80, #78858B);
  color: #FFFFFF;
}

table th {
  padding: 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

table td {
  padding: 18px 20px;
  border-bottom: 1px solid #F0F0F0;
  color: #5A6A80;
  font-size: 0.95rem;
}

table tbody tr:hover {
  background-color: #F9F9F9;
}

/* CTA BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background-color: #9BBFE0;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #78858B;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(155, 191, 224, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #9BBFE0;
  border: 2px solid #9BBFE0;
}

.btn-secondary:hover {
  background-color: #9BBFE0;
  color: #FFFFFF;
}

/* FORM */
.form-group {
  margin-bottom: 25px;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #D0D0D0;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #5A6A80;
  transition: border-color 0.3s ease-in-out;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #9BBFE0;
  box-shadow: 0 0 0 3px rgba(155, 191, 224, 0.15);
}

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

/* FOOTER */
footer {
  background-color: #5A6A80;
  color: #F5F5F5;
  padding: 60px 0 20px;
  margin-top: 100px;
}

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

.footer-section h3 {
  color: #9BBFE0;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-section p {
  color: #E0E0E0;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.footer-section a {
  color: #9BBFE0;
  display: block;
  margin-bottom: 0.8rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: #B0B0B0;
  font-size: 0.9rem;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #5A6A80;
  color: #F5F5F5;
  padding: 25px 40px;
  z-index: 999;
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
}

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

.cookie-text {
  flex: 1;
  margin-right: 30px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: #9BBFE0;
  color: #FFFFFF;
}

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

.cookie-btn-decline {
  background-color: transparent;
  color: #9BBFE0;
  border: 2px solid #9BBFE0;
}

.cookie-btn-decline:hover {
  background-color: #9BBFE0;
  color: #5A6A80;
}

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

.cookie-btn-learn:hover {
  background-color: #F5F5F5;
  color: #5A6A80;
}

/* DISCLAIMER */
.disclaimer {
  background: #F5F5F5;
  border-left: 4px solid #9BBFE0;
  padding: 25px 30px;
  border-radius: 4px;
  margin: 60px 0;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #5A6A80;
}

/* ANIMATION */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

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

/* RESPONSIVE */
@media (max-width: 1024px) {
  .row-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

@media (max-width: 768px) {
  .container {
    padding: 0 25px;
  }

  nav.navbar {
    padding: 1rem 25px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.1rem;
  }

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

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

  section {
    padding: 60px 0;
  }

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

  nav.navbar .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    padding: 20px;
    gap: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #E0E0E0;
  }

  nav.navbar .nav-menu.show {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cookie-text {
    margin-right: 0;
  }

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

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

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

  footer {
    padding: 40px 0 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1rem;
  }

  p {
    font-size: 0.95rem;
  }

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

  .card {
    padding: 25px;
  }

  .accordion-header {
    padding: 18px 20px;
  }

  .accordion-content {
    padding: 0 20px 18px;
  }

  table th,
  table td {
    padding: 12px 10px;
    font-size: 0.85rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}
