html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
  padding: 0;
}

.header-container {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.logo {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #2E4A5E;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo:hover {
  color: #1a1a1a;
}

nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
  letter-spacing: 0.3px;
}

nav a:hover {
  color: #2E4A5E;
}

body {
  padding-top: 65px;
}

main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  border-bottom: 1px solid #f0f0f0;
}

.section:last-child {
  border-bottom: none;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 40px 0;
  letter-spacing: -0.5px;
  color: #1a1a1a;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0 0 24px 0;
  line-height: 1.6;
  max-width: 900px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 24px 0;
  letter-spacing: -1px;
  color: #1a1a1a;
  line-height: 1.2;
}

h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 32px 0 24px 0;
  letter-spacing: -0.5px;
  color: #1a1a1a;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 16px 0;
  letter-spacing: -0.3px;
  color: #1a1a1a;
}

p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 16px 0;
  color: #444;
}

a {
  color: #2E4A5E;
  text-decoration: none;
  border-bottom: 1px solid #2E4A5E;
  transition: all 0.2s ease;
}

a:hover {
  background-color: rgba(46, 74, 94, 0.08);
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #2E4A5E;
  color: #ffffff;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-right: 12px;
  margin-bottom: 12px;
}

.cta-button:hover {
  background-color: #1a2a3a;
  transform: translateY(-2px);
}

.cta-button:border-bottom {
  border-bottom: none;
}

.content-row {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 40px;
}

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

.content-text {
  flex: 1;
  min-width: 0;
}

.content-image {
  flex: 0 0 400px;
  max-width: 100%;
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.blog-card {
  padding: 24px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.blog-card:hover {
  border-color: #2E4A5E;
  box-shadow: 0 4px 12px rgba(46, 74, 94, 0.1);
}

.blog-card-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #1a1a1a;
}

.blog-card-excerpt {
  font-size: 14px;
  color: #666;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.blog-card-link {
  font-size: 14px;
  font-weight: 600;
  color: #2E4A5E;
  text-decoration: none;
  border-bottom: 2px solid #2E4A5E;
  transition: all 0.2s ease;
}

.blog-card-link:hover {
  color: #1a2a3a;
  border-bottom-color: #1a2a3a;
}

.faq-item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e0e0e0;
}

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

.faq-question {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #2E4A5E;
  cursor: pointer;
  user-select: none;
}

.faq-answer {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.hero-section {
  position: relative;
  height: 600px;
  margin-left: -24px;
  margin-right: -24px;
  margin-top: -80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 74, 94, 0.5) 0%, rgba(26, 26, 26, 0.3) 100%);
  z-index: 1;
}

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

.hero-content h1 {
  color: #ffffff;
  font-size: 52px;
  margin-bottom: 16px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 0;
}

.links-block {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.link-item {
  padding: 12px 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  text-decoration: none;
  color: #2E4A5E;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  transition: all 0.2s ease;
}

.link-item:hover {
  background-color: #2E4A5E;
  color: #ffffff;
  border-color: #2E4A5E;
}

.link-item:border-bottom {
  border-bottom: none;
}

footer {
  background-color: #1a1a1a;
  color: #e0e0e0;
  padding: 60px 24px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1160px;
  margin: 0 auto;
}

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

.footer-section h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px 0;
  letter-spacing: 0.5px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 8px 0;
  color: #c0c0c0;
}

.footer-section a {
  font-size: 14px;
  color: #c0c0c0;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.footer-section a:hover {
  color: #ffffff;
  border-bottom-color: #2E4A5E;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 32px;
  text-align: center;
  font-size: 13px;
  color: #888;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #1a1a1a;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: #1a1a1a;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2E4A5E;
  box-shadow: 0 0 0 3px rgba(46, 74, 94, 0.1);
}

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

.form-submit {
  padding: 12px 24px;
  background-color: #2E4A5E;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-submit:hover {
  background-color: #1a2a3a;
}

@media (max-width: 768px) {
  .header-container {
    padding: 12px 16px;
  }

  nav {
    gap: 16px;
  }

  nav a {
    font-size: 13px;
  }

  .logo {
    font-size: 16px;
  }

  h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 24px;
  }

  h2 {
    font-size: 22px;
  }

  main {
    padding: 0 16px;
  }

  .content-row {
    flex-direction: column;
    gap: 32px;
  }

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

  .content-image {
    flex: 0 0 auto;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .hero-section {
    height: 400px;
    margin-left: -16px;
    margin-right: -16px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

.disclaimer-box {
  background-color: #f8f8f8;
  border-left: 4px solid #2E4A5E;
  padding: 20px;
  margin: 32px 0;
  border-radius: 4px;
}

.disclaimer-box strong {
  color: #2E4A5E;
  font-weight: 600;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 20px 24px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-consent.hidden {
  display: none;
}

.cookie-text {
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
}

.cookie-text a {
  color: #2E4A5E;
  text-decoration: underline;
}

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

.cookie-accept {
  padding: 10px 20px;
  background-color: #2E4A5E;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-accept:hover {
  background-color: #1a2a3a;
}
