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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Courier New', 'Courier', monospace;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #263238;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #263238;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #455a64;
}

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

.logo {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #263238;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 0.9rem;
  color: #263238;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.nav-link:hover {
  border-color: #263238;
  color: #263238;
}

.hero-section {
  margin-top: 80px;
  padding: 4rem 0;
  background-color: #fafafa;
  border-bottom: 2px solid #263238;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.25rem;
  text-align: center;
  color: #546e7a;
  margin-bottom: 2rem;
}

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

.section-title {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #263238;
}

.content-block {
  background-color: #ffffff;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem auto;
  border: 1px solid #e0e0e0;
}

.content-image-left {
  float: left;
  max-width: 350px;
  margin: 0 2rem 1rem 0;
}

.content-image-right {
  float: right;
  max-width: 350px;
  margin: 0 0 1rem 2rem;
}

.btn-primary {
  background-color: #263238;
  border-color: #263238;
  color: #ffffff;
  padding: 0.75rem 2rem;
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease;
  border: 2px solid #263238;
}

.btn-primary:hover {
  background-color: #37474f;
  border-color: #37474f;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #263238;
  color: #263238;
  padding: 0.75rem 2rem;
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background-color: #263238;
  color: #ffffff;
}

.disclaimer-box {
  background-color: #f5f5f5;
  border-left: 4px solid #263238;
  padding: 1.5rem;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

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

.faq-question {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 1.25rem;
  color: #263238;
  margin-bottom: 0.75rem;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

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

.form-control {
  border: 2px solid #e0e0e0;
  padding: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  border-color: #263238;
  box-shadow: none;
  outline: none;
}

.footer {
  background-color: #263238;
  color: #ffffff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h4 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer a {
  color: #b0bec5;
}

.footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #37474f;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #b0bec5;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #263238;
  color: #ffffff;
  padding: 1.5rem;
  z-index: 9999;
  border-top: 2px solid #455a64;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  margin-right: 2rem;
  font-size: 0.95rem;
}

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

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

.grid-item {
  background-color: #fafafa;
  padding: 1.5rem;
  border: 1px solid #e0e0e0;
}

.grid-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.data-table th {
  background-color: #263238;
  color: #ffffff;
  padding: 1rem;
  text-align: left;
  font-family: 'Courier New', 'Courier', monospace;
}

.data-table td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.data-table tr:nth-child(even) {
  background-color: #fafafa;
}

.contact-info {
  background-color: #fafafa;
  padding: 2rem;
  border: 1px solid #e0e0e0;
  margin: 2rem 0;
}

.contact-info p {
  margin-bottom: 0.5rem;
  font-family: 'Courier New', 'Courier', monospace;
}

.alert-info {
  background-color: #e3f2fd;
  border-left: 4px solid #263238;
  padding: 1rem;
  margin: 1rem 0;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .content-image-left,
  .content-image-right {
    float: none;
    max-width: 100%;
    margin: 1rem 0;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
}
