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

.header {
    background: url('ECS_Novum_logo.jpeg') no-repeat center center/cover;   
   
    color: white;
    text-align: center;
    padding: 50px 20px;
    position: relative;
}

.header-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
}




.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #4caf50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.navbar {
    background-color: #388e3c;
    color: white;
    padding: 10px;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
}

.section {
 min-height: 100vh; /* 100% wysokości okna przeglądarki */
    padding: 20px; /* Dodatkowe odstępy dla lepszej czytelności */
    box-sizing: border-box; /* Uwzględnij padding w wymiarach elementu */
    margin: 20px auto;
    max-width: 800px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}




   
.contact-form input, .contact-form textarea, .contact-form button {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 10px;
}

.contact-form button {
    background-color: #388e3c;
    color: white;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #388e3c;
}

.footer {
    text-align: center;
    padding: 10px;
    background-color: #388e3c;
    color: white;
}


#pricing .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

#pricing .tile {
  width: 800px;
  height: 800px;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-align: center;
  border: 2px solid #ddd;
}

#pricing .tile:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  border: 2px solid #bbb;
}

#pricing .tile img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

#pricing .tile .content {
  padding: 20px;
}

#pricing .tile .content h3 {
  margin: 40px 0;
  font-size: 1.2em;
}

#pricing .tile .content p {
  margin: 40px 0;
  color: #666;
}

#services.tile .content h3 {
  margin: 20px 0;
  font-size: 6em; /* Powiększono tekst w sekcji h3 */
}
#services.tile .content p {
  margin: 0;
  color: #666;
  font-size: 3.2em; /* Powiększono tekst w sekcji p */
}


#steps.tile .content h3 {
  margin: 20px 0;
  font-size: 6em; /* Powiększono tekst w sekcji h3 */
}
#steps.tile .content p {
  margin: 0;
  color: #666;
  font-size: 3.2em; /* Powiększono tekst w sekcji p */
}

