body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #ffffff;
  color: #333;
  line-height: 1.6;
}


header {
  background: #1a5f3f;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

header h1 {
  margin: 0 0 10px;
  font-size: 2.5em;
}

header h2 {
  margin: 10px 0;
  font-size: 1.5em;
  font-weight: normal;
}

header p {
  font-size: 1.2em;
  max-width: 600px;
  margin: 10px auto 0;
}


section {
  padding: 20px 20px;
  max-width: 1000px;
  margin: auto;
}

section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #1a5f3f;
}


.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  justify-content: center;
}

.service-item {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  box-sizing: border-box;
  text-align: center;
  transition: transform 0.2s ease;
}

.service-item:hover {
  transform: translateY(-2px);
}

.service-item h3 {
  margin-top: 0;
  color: #1a5f3f;
}


.experience {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.experience-item {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 0;
  min-width: 200px;
  box-sizing: border-box;
  text-align: center;
  transition: transform 0.2s ease;
}

.experience-item:hover {
  transform: translateY(-2px);
}

.experience-item h3 {
  margin-top: 0;
  color: #1a5f3f;
  font-size: 2em;
}


address {
  font-style: normal;
}

address p {
  margin: 10px 0;
}

.linkedin-icon {
  margin-left: 5px;
}

.cookie-banner-hidden {
  display: none;
}


footer {
  background: #f0f0f0;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  margin-top: 40px;
}

a.legal-link {
  color: #1a5f3f;
  text-decoration: none;
}

a.legal-link:hover {
  text-decoration: underline;
}

#cookie-banner .cookie-text a.legal-link-white {
  color: white;
  text-decoration: none;
}

#cookie-banner .cookie-text a.legal-link-white:hover {
  text-decoration: underline;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a5f3f;
  color: white;
  padding: 20px;
  display: none; 
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  font-size: 1em;
  flex-wrap: wrap;
  gap: 15px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

#cookie-banner .cookie-text {
  flex: 1;
  min-width: 300px;
  margin-right: 20px;
}

#cookie-banner .cookie-text p {
  margin: 5px 0;
  font-size: 14px;
}

#cookie-banner .cookie-text a {
  color: #66d9a3;
  text-decoration: underline;
}

#cookie-banner .cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}


#cookie-banner button {
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  border: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

#cookie-banner .btn-accept {
  background: #1e7e34;
  color: white;
  border: 2px solid white;
}

#cookie-banner .btn-accept:hover {
  background: #218838;
}

#cookie-banner .btn-reject {
  background: #555;
  color: white;
}

#cookie-banner .btn-reject:hover {
  background: #333;
}

#cookie-banner .btn-settings {
  background: transparent;
  color: white;
  border: 1px solid white;
}

#cookie-banner .btn-settings:hover {
  background: #33b27b;
  color: white;
}


#cookie-banner button:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}


#cookie-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  max-width: 500px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1001;
}

#cookie-modal h2 {
  margin-top: 0;
  color: #1a5f3f;
}

#cookie-modal .checkbox-group {
  margin: 20px 0;
}

#cookie-modal .checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  color: #333;
}

#cookie-modal .checkbox-group input[type="checkbox"] {
  margin-right: 0;
}

#cookie-modal .modal-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

#cookie-modal button {
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

#cookie-modal .btn-save {
  background: #28a745;
  color: white;
}

#cookie-modal .btn-save:hover {
  background: #218838;
}

#cookie-modal .btn-cancel {
  background: #f0f0f0;
  color: #333;
}

#cookie-modal .btn-cancel:hover {
  background: #e0e0e0;
}


@media (max-width: 768px) {
  header h1 {
    font-size: 2em;
  }
  
  header h2 {
    font-size: 1.2em;
  }
  
  .services {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .experience {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .experience-item {
    flex: 1 1 100%;
    max-width: 400px;
    margin-bottom: 20px;
  }
  
  #cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  
  #cookie-banner .cookie-text {
    margin-right: 0;
    margin-bottom: 15px;
    min-width: auto;
  }
  
  #cookie-banner .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  #cookie-modal {
    left: 10px;
    right: 10px;
    transform: translateY(-50%);
    max-width: none;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 30px 15px;
  }
  
  header h1 {
    font-size: 1.8em;
  }
  
  section {
    padding: 15px;
  }
  
  #cookie-banner {
    font-size: 0.9em;
  }
  
  #cookie-modal .modal-buttons {
    flex-direction: column;
  }
  
  #cookie-modal button {
    width: 100%;
  }
}