/* Reset i podstawy */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  color: #000000;
  line-height: 1.6;
}

/* Nagłówek poziomy */
header {
  background-color: #000000;
  color: #66cc99;
  padding: 20px;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

header .logo {
  max-width: 250px;
  width: 40%;
  height: auto;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
}

.header-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn-header {
  display: inline-block;
  padding: 10px 20px;
  background-color: #66cc99;
  color: #000000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s, transform 0.2s;
}

.btn-header:hover {
  background-color: #55b385;
  transform: scale(1.05);
}

/* Sekcje */
section {
  max-width: 900px;
  margin: 30px auto;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-white {
  background-color: #ffffff;
}

.section-gray {
  background-color: #f0f0f0;
}

/* Nagłówki sekcji */
h2 {
  color: #66cc99;
  margin-bottom: 15px;
  font-family: 'Verdana', sans-serif;
}

/* Lista usług */
ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

ul li::before {
  content: "✔";
  color: #66cc99;
  position: absolute;
  left: 0;
}

/* Przyciski kontaktowe w sekcji */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #66cc99;
  color: #000000;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  margin: 5px 0;
  transition: background 0.3s, transform 0.2s;
}

.btn:hover {
  background-color: #55b385;
  transform: scale(1.05);
}

/* Kontakt – układ mapy i info */
.contact-section .contact-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-section .contact-info {
  flex: 1;
  min-width: 250px;
}

.map-container {
  flex: 2;
  min-width: 250px;
  height: 300px;
}

/* Stopka */
footer {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* Responsywność */
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    align-items: center;
  }

  .header-buttons {
    margin-top: 10px;
  }

  .contact-section .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .map-container {
    width: 100%;
    height: 250px;
  }
}
