/* Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Viršutinė juosta */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo */
.logo {
    height: 50px;
    width: auto;
}

/* Nuorodos */
.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #000;
}

/* Neaktyvus mygtukas */
.inactive-button {
    background-color: #f0f0f0;
    color: #999;
    padding: 10px 16px;
    border: 2px solid #ccc;
    border-radius: 8px;
    cursor: not-allowed;
    font-size: 15px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.inactive-button:hover {
    transform: scale(1.05);
    opacity: 1;
}






/* Viršutinė reklaminė nuotrauka */
.top-banner {
    display: flex;
    justify-content: center;
    margin-top: 40px; /* Didesnis tarpas nuo nav juostos */
}


.top-banner img {
    width: 900px;
    max-width: 1000px;
    /*height: auto; */
    max-height: 260px;
    object-fit: cover;
    border-radius: 4px;
}


/* Apatinė informacinė dalis */
.info-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Teksto pusė */
.text-side {
    max-width: 550px;
}

.text-side h2 {
    font-size: 28px;
    color: #5865F1;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blue-line {
    width: 260px;
    height: 3px;
    background-color:#5865F1;
    margin-bottom: 24px;
}

.text-side p {
    font-size: 16px;
    color: #5865F1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.text-side a {
    font-size: 16px;
    color: #7188D9;
    text-decoration: none;
}

/* Iliustracijos pusė */
.image-side img {
    max-width: 500px;
    width: 100%;
    height: auto;
}












.section {
    padding: 50px 15%;
  }

  .content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .image {
    flex: 1 1 40%;
    max-width: 500px;
    padding: 20px;
  }

  .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
  }

  .text {
    flex: 1 1 50%;
    padding: 20px;
  }

  h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #7188D9;
  }

  .underline {
    height: 2px;
    width: 300px;
    background-color: #7188D9;
    margin-bottom: 20px;
  }

  .text p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #7188D9;
  }

  .section-title {
    text-align: center;
    font-size: 28px;
    margin-top: 60px;
    margin-bottom: 10px;
    font-weight: 700;



    text-decoration: underline;
    text-decoration-color: #7188D9;
    text-decoration-thickness: 2px;
    text-underline-offset: 16px;
  }

  .section-subtitle {
    text-align: center;
    max-width: 900px;
    margin: 20px auto;
    font-size: 14px;
    color: #7188D9;

  }

  .underline000 {
    text-decoration: underline;
    text-decoration-color: #7188D9;
    text-decoration-thickness: 20px;
    text-underline-offset: 40px;
  }



  .user-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .benefit-item {
    text-align: center;
    max-width: 180px;
  }
  
  .benefit-item img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  
  .benefit-item h3 {
    font-size: 20px;
    margin: 0;
  }
  
  .benefit-item .blue {
    color: #7188D9;
    font-weight: bold;
  }
  
  .benefit-item .orange {
    color: #7188D9;
    font-weight: bold;
  }
  
  .benefit-list {
    background-color: #f3f4ed;
    padding: 30px;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
  }
  
  .benefit-list ul {
    list-style: disc;
    padding-left: 20px;
  }
  
  .benefit-list li {
    margin-bottom: 10px;
    color: #7188D9;
    font-size: 15px;
  }
  





  .tamo-app {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .tamo-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
  }
  
  .tamo-image img {
    max-width: 100%;
    width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .tamo-text {
    max-width: 600px;
  }
  
  .tamo-text h2 {
    font-size: 28px;
    color: #7188D9;
    margin-bottom: 20px;
  }
  
  .tamo-text .highlight {
    font-weight: bold;
    border-bottom: 2px solid #7188D9;
  }
  
  .tamo-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #7188D9;
  }
  
  .tamo-text ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 30px;
    color: #7188D9;
  }
  
  .tamo-text ul li {
    margin-bottom: 10px;
  }
  
  .btn-orange {
    background-color: #7188D9;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .btn-orange:hover {
    background-color: #7188D9;
  }
  



  #reklama1 {
    padding: 40px;
    max-width: 1000px;
    margin: auto;
    font-family: 'Segoe UI', sans-serif;
    color: #7188D9
}

#pavadinimas1 {
    font-size: 32px;
    text-align: center;
    border-bottom: 2px solid #7188D9;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

#tekstas1, #tekstas2 {
    font-size: 16px;
    margin-bottom: 20px;
}

#elpastas1 {
    color: #468ae2;
    text-decoration: none;
}

#elpastas1:hover {
    text-decoration: underline;
}

#statistika1 {
    text-align: center;
    margin-top: 30px;
}

#statistika1 img {
    max-width: 100%;
    height: auto;
}

/* Footer (Kontaktai) */
#kontaktai1 {
    background-color: #5865F1;
    color: white;
    padding: 40px 20px;
}

#kontaktaiPavadinimas1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
}

.kontaktai-grupe1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.grupe1 {
    flex: 1;
    min-width: 250px;
}

.grupe1 h3 {
    font-size: 18px;
    margin-top: 10px;
}

.grupe1 p,
.grupe1 a {
    color: white;
    font-size: 15px;
    text-decoration: none;
}












#footer-bottom2 {
    background-color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: sans-serif;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.533);
    flex-wrap: wrap;
    border-top: 1px solid #e5e5e5;
}

.footer-left2 {
    flex: 1;
    min-width: 200px;
    margin-bottom: 8px;
}

.footer-links2 {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.footer-links2 a {
    color: #5fc2e0;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.footer-links2 a:hover {
    text-decoration: underline;
}

.footer-links2 span {
    color: #51b5c2;
}

.footer-social2 {
    flex: 0;
    font-size: 18px;
}

.fb2 {
    color: white;
    padding: 4px 9px;
    border-radius: 50%;
    font-style: normal;
    font-weight: bold;
    text-decoration: none;
}

