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

html, body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #FFFFFF;
  color: #000000;
  line-height: 1.9;
}

body {
  padding-top: 80px;
}

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

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

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

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000000;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  color: #000000;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

nav a:hover {
  color: #333333;
}

h1 {
  font-size: 6rem;
  font-weight: bold;
  color: #000000;
  text-align: center;
  margin: 40px 0;
  line-height: 1.2;
}

h2 {
  font-size: 2.8rem;
  font-weight: 300;
  color: #000000;
  text-align: center;
  margin: 60px 0 30px;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000000;
  margin: 30px 0 15px;
}

p {
  font-size: 1rem;
  line-height: 1.9;
  color: #333333;
  margin: 20px 0;
}

a {
  color: #000000;
  text-decoration: underline;
  transition: color 0.2s;
}

a:hover {
  color: #333333;
}

.hero {
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #FFFFFF;
  padding: 40px 20px;
}

.hero img {
  max-width: 60%;
  height: auto;
  margin-bottom: 40px;
}

.hero-text {
  max-width: 800px;
}

section {
  padding: 80px 0;
  text-align: center;
}

section.left-align {
  text-align: left;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 60px 0;
}

.content-grid img {
  max-width: 100%;
  height: auto;
}

.content-text {
  text-align: left;
}

button, .btn {
  display: inline-block;
  padding: 15px 40px;
  border: 2px solid #000000;
  background-color: #FFFFFF;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  margin: 20px 0;
}

button:hover, .btn:hover {
  background-color: #000000;
  color: #FFFFFF;
}

footer {
  background-color: #FFFFFF;
  border-top: 1px solid #D1D5DB;
  padding: 60px 0 40px;
  margin-top: 80px;
}

footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: left;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #333333;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-section ul li a:hover {
  color: #000000;
  text-decoration: underline;
}

.footer-section p {
  font-size: 0.95rem;
  color: #333333;
  text-align: left;
}

.footer-bottom {
  border-top: 1px solid #D1D5DB;
  padding-top: 30px;
  text-align: center;
  color: #666666;
  font-size: 0.9rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

.card {
  padding: 30px;
  text-align: left;
  transition: all 0.3s ease;
}

.card:hover {
  color: #666666;
}

.card h3 {
  margin-top: 0;
  text-align: left;
}

.card a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 15px;
}

.card a:hover {
  text-decoration: underline;
}

.faq-item {
  margin: 40px 0;
  text-align: left;
}

.faq-item h3 {
  margin-bottom: 15px;
}

.faq-item p {
  margin: 10px 0;
}

form {
  max-width: 500px;
  margin: 40px auto;
  text-align: left;
}

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

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #000000;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #D1D5DB;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}

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

form .disclaimer {
  font-size: 0.9rem;
  color: #333333;
  margin: 20px 0;
  padding: 15px;
  border: 1px solid #D1D5DB;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  text-align: left;
}

table th {
  background-color: #F3F4F6;
  padding: 15px;
  font-weight: bold;
  border-bottom: 2px solid #D1D5DB;
  text-align: left;
}

table td {
  padding: 15px;
  border-bottom: 1px solid #D1D5DB;
}

table tr:hover {
  background-color: #F9FAFB;
}

.disclaimer-box {
  background-color: #F9FAFB;
  border: 1px solid #D1D5DB;
  padding: 30px;
  margin: 40px 0;
  border-radius: 0;
}

.disclaimer-box h3 {
  margin-top: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  color: #FFFFFF;
  padding: 20px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner p {
  color: #FFFFFF;
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner .button-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-banner button {
  padding: 10px 20px;
  margin: 0;
  border: 1px solid #FFFFFF;
  background-color: transparent;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.cookie-banner button:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.cookie-banner a {
  color: #FFFFFF;
  text-decoration: underline;
  font-size: 0.9rem;
}

.message {
  max-width: 600px;
  margin: 60px auto;
  text-align: center;
  padding: 40px;
  background-color: #F9FAFB;
  border: 1px solid #D1D5DB;
}

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

  h2 {
    font-size: 1.8rem;
  }

  .hero {
    height: auto;
    min-height: 50vh;
  }

  .hero img {
    max-width: 80%;
  }

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

  nav ul {
    gap: 15px;
    font-size: 0.9rem;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

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