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

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 2rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #1E90FF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #1E90FF;
}

main {
  margin-top: 80px;
  padding: 0;
}

.hero {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 600px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
}

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

.section {
  padding: 4rem 2rem;
}

.section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333;
}

.section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #555;
}

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

.grid-2 img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.content-block {
  padding: 2rem 0;
}

.content-block ul {
  margin-left: 1.5rem;
  margin-top: 1rem;
}

.content-block li {
  margin-bottom: 0.75rem;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background-color: #1E90FF;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

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

.faq {
  margin-top: 2rem;
}

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

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #1E90FF;
}

.faq-answer {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

footer {
  background-color: #f5f5f5;
  border-top: 1px solid #e0e0e0;
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

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

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

.footer-section a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 2rem;
  text-align: center;
  color: #777;
  font-size: 14px;
}

.footer-contact {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.footer-contact a {
  color: #1E90FF;
  text-decoration: none;
}

.disclaimer {
  background-color: #f0f7ff;
  border-left: 4px solid #1E90FF;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  line-height: 1.8;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

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

.blog-card h3 {
  font-size: 20px;
  margin-bottom: 0.75rem;
  color: #333;
}

.blog-card p {
  font-size: 14px;
  color: #777;
  margin-bottom: 1rem;
}

.blog-card a {
  color: #1E90FF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-card a:hover {
  color: #1676db;
}

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

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1E90FF;
  box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

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

.policy-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.policy-text h2 {
  font-size: 28px;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-text h3 {
  font-size: 20px;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.policy-text ul {
  margin-left: 1.5rem;
  margin-top: 1rem;
}

.policy-text li {
  margin-bottom: 0.75rem;
}

.about-image {
  width: 100%;
  border-radius: 8px;
  margin: 2rem 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  padding: 1.5rem 2rem;
  z-index: 999;
  display: none;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.cookie-message {
  flex: 1;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #1E90FF;
  color: #fff;
}

.cookie-accept:hover {
  background-color: #1676db;
}

.cookie-close {
  background-color: #e0e0e0;
  color: #333;
}

.cookie-close:hover {
  background-color: #d0d0d0;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  nav {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 32px;
  }

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

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

  .section {
    padding: 2rem 1rem;
  }

  .section h2 {
    font-size: 28px;
  }

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

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

  .cookie-banner.show {
    flex-direction: column;
    gap: 1rem;
  }

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