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

html, body {
  height: 100%;
}

body {
  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;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1030;
  padding: 1rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #FF6347;
  text-decoration: none;
}

.logo:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

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

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

nav a:hover {
  color: #FF6347;
}

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

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

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

.hero-overlay {
  background-color: rgba(0,0,0,0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

section {
  padding: 4rem 0;
  border-bottom: 1px solid #f0f0f0;
}

h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333;
}

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

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

p {
  margin-bottom: 1rem;
  color: #555;
  font-size: 16px;
}

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

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

.cta-button {
  display: inline-block;
  padding: 12px 32px;
  background-color: #FF6347;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #E5523A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,99,71,0.3);
}

.faq {
  margin: 2rem 0;
}

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

.faq-item h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #FF6347;
}

.faq-item p {
  margin-bottom: 0;
}

footer {
  background-color: #f9f9f9;
  padding: 3rem 0;
  margin-top: 3rem;
  border-top: 1px solid #e0e0e0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

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

.footer-column a {
  text-decoration: none;
  color: #666;
  font-size: 14px;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #FF6347;
}

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

.footer-disclaimer {
  background-color: #fff9f7;
  padding: 1rem;
  border-left: 4px solid #FF6347;
  margin-bottom: 2rem;
  font-size: 14px;
}

.disclaimer-section {
  background-color: #fff9f7;
  padding: 2rem;
  border-left: 4px solid #FF6347;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-section h3 {
  color: #FF6347;
  margin-bottom: 1rem;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #FF6347;
  box-shadow: 0 0 0 3px rgba(255,99,71,0.1);
}

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

button[type="submit"] {
  background-color: #FF6347;
  color: #fff;
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #E5523A;
  transform: translateY(-2px);
}

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

.blog-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

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

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

.blog-card-content h3 {
  margin-bottom: 1rem;
}

.blog-card-content p {
  margin-bottom: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: #fff;
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

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

.cookie-banner-text {
  flex: 1;
  font-size: 14px;
}

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

.cookie-banner button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

.cookie-decline {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

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

@media (max-width: 768px) {
  header {
    padding: 0.75rem 0;
  }

  .navbar {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero {
    height: 300px;
  }

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

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

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

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

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

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

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

  .cookie-banner button {
    width: 100%;
  }
}
