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

body {
  font-family: system-ui, -apple-system, Roboto, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #333;
  background-color: #ffffff;
}

.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-size: 1.5rem;
  font-weight: 600;
  color: #27AE60;
  text-decoration: none;
}

.logo:hover {
  opacity: 0.8;
  text-decoration: none;
}

.nav-link {
  color: #333;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #27AE60;
  text-decoration: none;
}

main {
  margin-top: 80px;
}

.hero {
  background-color: #f8f9fa;
  padding: 4rem 0;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #27AE60;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #27AE60;
}

h2 {
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
  margin-top: 2rem;
  color: #333;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
  color: #333;
}

.section {
  padding: 3rem 0;
}

.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1rem 0;
}

.content-with-image {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.content-with-image.image-left {
  flex-direction: row;
}

.content-with-image.image-right {
  flex-direction: row-reverse;
}

.content-with-image .text-content {
  flex: 1;
}

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

@media (max-width: 768px) {
  .content-with-image {
    flex-direction: column !important;
  }
  
  .content-with-image .image-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.cta-box {
  background-color: #f8f9fa;
  border-left: 4px solid #27AE60;
  padding: 1.5rem;
  margin: 2rem 0;
}

.btn-primary {
  background-color: #27AE60;
  border-color: #27AE60;
  color: #ffffff;
  padding: 0.75rem 2rem;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #229954;
  border-color: #229954;
  color: #ffffff;
  text-decoration: none;
}

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

.footer h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #27AE60;
}

.footer a {
  color: #333;
  text-decoration: none;
}

.footer a:hover {
  color: #27AE60;
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.disclaimer-box {
  background-color: #fffbf0;
  border: 1px solid #f0e5c8;
  border-radius: 4px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-item h3 {
  color: #27AE60;
  margin-top: 0;
}

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

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  padding: 1rem;
  z-index: 1001;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner p {
  margin-bottom: 0.5rem;
}

.cookie-banner button {
  background-color: #27AE60;
  color: #ffffff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
}

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

.container {
  max-width: 1100px;
}

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

.equipment-card {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 4px;
}

.equipment-card h3 {
  color: #27AE60;
  margin-top: 0;
}

.disclaimer-text {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  margin-top: 1rem;
}
