:root {
  --primary-color: #4A6C8C;
  --primary-light: #6A8CAC;
  --neutral-white: #FFFFFF;
  --neutral-light: #F8F9FA;
  --neutral-dark: #2C3E50;
  --neutral-grey: #CCCCCC;
  --border-color: rgba(74, 108, 140, 0.15);
}

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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--neutral-dark);
  background-color: var(--neutral-white);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

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

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

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

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--neutral-white);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  box-shadow: 0 2px 8px rgba(74, 108, 140, 0.08);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

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

.nav li a {
  font-size: 1rem;
  color: var(--neutral-dark);
  transition: color 0.3s ease;
}

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

main {
  margin-top: 80px;
}

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

.hero {
  background: linear-gradient(135deg, var(--neutral-light) 0%, var(--neutral-white) 100%);
  padding: 3rem 0;
  text-align: center;
}

.hero h1 {
  margin-bottom: 0.5rem;
  color: var(--neutral-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.hero p {
  font-size: 1.25rem;
  color: var(--neutral-white);
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(74, 108, 140, 0.3);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.section {
  padding: 3rem 0;
}

.section h2 {
  margin-bottom: 2rem;
}

.content-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.content-row.reverse {
  flex-direction: row-reverse;
}

.content-text {
  flex: 1;
}

.content-image {
  flex: 1;
  text-align: center;
}

.content-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(74, 108, 140, 0.12);
}

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

.card {
  background: var(--neutral-light);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(74, 108, 140, 0.15);
}

.card h3 {
  margin-top: 0;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

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

.faq-question {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #666;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--neutral-white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover {
  background-color: var(--primary-light);
  color: var(--neutral-white);
}

.disclaimer {
  background: rgba(74, 108, 140, 0.05);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: #666;
}

footer {
  background-color: var(--neutral-dark);
  color: var(--neutral-white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

footer a {
  color: var(--primary-light);
}

footer a:hover {
  color: var(--neutral-white);
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--neutral-white);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

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

.contact-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(--neutral-dark);
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(74, 108, 140, 0.1);
}

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

.blog-card {
  background: var(--neutral-light);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

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

.blog-card p {
  color: #666;
  margin-bottom: 1rem;
}

.blog-image {
  margin: 2rem 0;
}

.blog-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.disclaimer-message {
  background: rgba(74, 108, 140, 0.05);
  border-left: 4px solid var(--primary-color);
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .nav {
    gap: 1rem;
  }
  
  .nav li a {
    font-size: 0.9rem;
  }
  
  main {
    margin-top: 70px;
  }
  
  .content-row,
  .content-row.reverse {
    flex-direction: column;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .section {
    padding: 2rem 0;
  }
}

#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--neutral-white);
  border-top: 1px solid var(--border-color);
  padding: 1.5rem;
  z-index: 99;
  box-shadow: 0 -4px 12px rgba(74, 108, 140, 0.1);
  display: none;
}

#cookie-consent.show {
  display: block;
}

#cookie-consent p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #666;
}

#cookie-consent .button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

#cookie-consent button {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

#cookie-consent .accept-btn {
  background-color: var(--primary-color);
  color: var(--neutral-white);
}

#cookie-consent .accept-btn:hover {
  background-color: var(--primary-light);
}

#cookie-consent .decline-btn {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

#cookie-consent .decline-btn:hover {
  background-color: var(--neutral-light);
}

.content-wrapper {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.content-wrapper img {
  flex: 0 0 auto;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(74, 108, 140, 0.12);
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }
  
  .content-wrapper img {
    max-width: 100%;
  }
}

.hero {
  background: linear-gradient(135deg, var(--neutral-light) 0%, var(--neutral-white) 100%);
  padding: 3rem 0;
  text-align: center;
}
