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

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

:root {
  --primary-color: #2C3E50;
  --accent-gold: #F39C12;
  --accent-green: #2ECC71;
  --accent-gray: #BDC3C7;
  --text-dark: #2C3E50;
  --text-light: #FFFFFF;
  --bg-light: #F5F5F5;
  --bg-white: #FFFFFF;
  --border-color: #E8E8E8;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  letter-spacing: 0.3px;
}

h1 {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 1.2rem;
  margin-top: 2rem;
}

h3 {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  margin-top: 1.2rem;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

header {
  background-color: var(--text-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.logo span {
  font-family: 'Merriweather', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

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

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

nav a:hover,
nav a.active {
  color: var(--accent-gold);
}

nav a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent-gold);
}

main {
  min-height: calc(100vh - 100px);
}

section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-section {
  background: linear-gradient(rgba(44, 62, 80, 0.5), rgba(44, 62, 80, 0.5)), url('images/hero.jpg') center/cover;
  color: var(--text-light);
  padding: 6rem 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.hero-content {
  max-width: 900px;
}

.hero-content h1 {
  color: var(--text-light);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-content h2 {
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 400;
  font-family: 'Source Sans Pro', sans-serif;
  margin-bottom: 2rem;
}

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

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

.container.three-col {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.text-content p {
  margin-bottom: 1.2rem;
}

.card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
}

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

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

.card h3 {
  margin-top: 0;
}

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

.list-items li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.8;
}

.list-items li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
}

.disclosure-panel {
  background-color: #FFF8E7;
  border-left: 4px solid var(--accent-gold);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 2px;
}

.disclosure-panel h3 {
  color: var(--accent-gold);
  margin-top: 0;
}

button, .btn {
  background-color: var(--accent-gold);
  color: var(--text-light);
  border: none;
  padding: 0.8rem 1.8rem;
  font-size: 0.95rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

button:hover, .btn:hover {
  background-color: #D68910;
  transform: translateY(-1px);
}

button:active, .btn:active {
  transform: translateY(0);
}

form {
  max-width: 600px;
  margin: 2rem 0;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.1);
}

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

footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
  border-top: 1px solid #34495e;
}

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

.footer-section h3 {
  color: var(--text-light);
  margin-top: 0;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.footer-section a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.legal-message {
  background-color: var(--accent-gold);
  color: var(--text-dark);
  padding: 1rem 1.5rem;
  border-radius: 2px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
}

.thank-you-box {
  background-color: var(--bg-light);
  border: 2px solid var(--accent-green);
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
  max-width: 600px;
  margin: 3rem auto;
}

.thank-you-box h2 {
  color: var(--accent-green);
  margin-top: 0;
}

.thank-you-box p {
  margin-bottom: 1.5rem;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

table th {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.8rem;
  text-align: left;
  font-weight: 600;
}

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

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

.warning-panel {
  background-color: #FFF8E7;
  border: 2px solid var(--accent-gold);
  border-radius: 2px;
  padding: 2rem;
  margin: 2rem 0;
}

.warning-panel h2 {
  color: var(--accent-gold);
  margin-top: 0;
}

.warning-panel p {
  line-height: 1.9;
}

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

.glossary-list li {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.glossary-list li:last-child {
  border-bottom: none;
}

.glossary-list strong {
  color: var(--accent-gold);
}

.contact-info {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

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

.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-meta {
  font-size: 0.85rem;
  color: #7F8C8D;
  margin-bottom: 0.8rem;
}

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

.blog-card-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1rem;
}

.read-more {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #D68910;
}

.testimonial-box {
  border-left: 4px solid var(--accent-green);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #444;
  font-style: italic;
}

.stat-strip {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 1.5rem;
  border-radius: 2px;
  margin: 2rem 0;
  text-align: center;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.comparison-item {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: 2px;
  border-left: 4px solid var(--accent-gold);
}

.comparison-item h3 {
  margin-top: 0;
}

.accordion {
  border: 1px solid var(--border-color);
  border-radius: 2px;
  margin: 1rem 0;
}

.accordion-item {
  border-bottom: 1px solid var(--border-color);
}

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

.accordion-header {
  padding: 1rem;
  background-color: var(--bg-light);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

.accordion-header::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

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

.accordion-item.active .accordion-header::after {
  transform: rotate(45deg);
}

.accordion-body {
  display: none;
  padding: 1.5rem;
  background-color: var(--bg-white);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  z-index: 999;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

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

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

.cookie-btn-info {
  background-color: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

.cookie-btn-info:hover {
  background-color: rgba(243, 156, 18, 0.1);
}

.hidden {
  display: none !important;
}

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .header-container {
    padding: 0.8rem 1rem;
  }

  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  section {
    padding: 2rem 1rem;
  }

  .hero-section {
    padding: 3rem 1rem;
    min-height: 50vh;
  }

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

  .hero-content h2 {
    font-size: 1.2rem;
  }

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

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

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

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

  h2 {
    font-size: 1.3rem;
  }

  nav ul {
    gap: 0.5rem;
  }

  nav a {
    font-size: 0.75rem;
  }

  .list-items li {
    padding-left: 1.5rem;
  }

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

  form {
    padding: 0;
  }

  table {
    font-size: 0.85rem;
  }

  table th,
  table td {
    padding: 0.5rem;
  }
}
