@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
    
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
        /* Top Bar Styles */
        .top-bar {
            background: linear-gradient(135deg, #009bdd 0%, #007bb8 100%);
            padding: 12px 0;
            color: white;
            font-size: 14px;
            position: relative;
            overflow: hidden;
        }

        .top-bar::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: shimmer 6s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .top-bar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .top-info {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .info-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .info-icon {
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .info-text p {
            margin: 0;
            line-height: 1.2;
        }

        .info-text p:first-child {
            font-size: 12px;
            opacity: 0.9;
        }

        .info-text p:last-child {
            font-weight: 600;
        }

        .appointment-btn {
            background: #fff;
            color: #009bdd;
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .appointment-btn:hover {
            background: #f0f8ff;
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 155, 221, 0.3);
        }

        /* Navbar Styles */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 155, 221, 0.1);
            border-bottom: 1px solid rgba(0, 155, 221, 0.1);
        }

        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #009bdd;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: #009bdd;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: #009bdd;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::before {
            width: 100%;
        }

        .nav-link:hover {
            color: #009bdd;
            background: rgba(0, 155, 221, 0.05);
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle::after {
            content: '\f282';
            font-family: 'bootstrap-icons';
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .dropdown:hover .dropdown-toggle::after {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 155, 221, 0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 155, 221, 0.1);
            z-index: 100;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 12px 16px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 4px 8px;
        }

        .dropdown-menu a:hover {
            background: #009bdd;
            color: white;
            transform: translateX(5px);
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            gap: 4px;
        }

        .hamburger-line {
            width: 25px;
            height: 3px;
            background: #009bdd;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .mobile-menu-btn.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #009bdd 0%, #007bb8 100%);
            z-index: 999;
            padding: 80px 20px 20px;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-nav-menu {
            list-style: none;
            padding: 0;
        }

        .mobile-nav-item {
            margin-bottom: 20px;
        }

        .mobile-nav-link {
            color: white;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            padding: 15px 20px;
            display: block;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .mobile-nav-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(10px);
        }

        .mobile-dropdown-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            margin-top: 10px;
        }

        .mobile-dropdown-menu.active {
            max-height: 300px;
        }

        .mobile-dropdown-menu a {
            display: block;
            padding: 10px 15px;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 16px;
            margin-left: 20px;
            border-left: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .mobile-dropdown-menu a:hover {
            color: white;
            border-left-color: white;
            padding-left: 25px;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        /* Contact Info in Mobile */
        .mobile-contact {
            margin-top: 40px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }

        .mobile-contact h3 {
            color: white;
            margin-bottom: 15px;
            font-size: 18px;
        }

        .mobile-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 10px;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .navbar-container {
                padding: 0 15px;
            }

            .logo img {
                width: 50px;
                height: 50px;
            }

            .logo-text {
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .top-info {
                flex-direction: column;
                gap: 10px;
            }

            .info-item {
                font-size: 12px;
            }
        }

        /* Demo Content */
        .demo-content {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .demo-content h1 {
            color: #009bdd;
            font-size: 48px;
            margin-bottom: 20px;
        }

        .demo-content p {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

/* Imagini reclama */
.container {
    margin: 20px 100px 30px 150px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .box {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 200px;
    overflow: hidden;
  }
  
  .box img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    transition: opacity 0.3s ease;
  }
  
  .box:hover .overlay {
    opacity: 1;
  }
  
  @media screen and (max-width: 600px) {
    .container {
      align-items: center;
      justify-content: center;
      justify-items: center;
      align-content: center;
      display: flex;
      flex-wrap: wrap;
      margin: auto; /* Margini reduse pentru dispozitivele mobile */
    }
    .box {
      box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
      position: relative;
      width: 100%;
      max-width: 175px;
      height: 100px;
      overflow: hidden;
    }
    .numardetelefon{
      display: none;
    }
  }
  .box:hover .price {
    opacity: 1;
  }
  
  .box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0); /* Transparent la început */
    transition: background-color 0.3s ease;
  }
  
  .box:hover::after {
    background-color: rgba(0, 0, 0, 0.5); /* Opac la hover */
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  /* Counting */
  .counting-numb{
    margin-bottom: 15px;
    background-color: #0086c0;
    color: #fff;
    font-family: "Roboto Mono", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
  }
  .counter-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 30px 120px;
  }
  .text-counter{
    font-size: 30px;
  }
  .counter {
    font-size: 60px;
    margin-top: 10px;
  }
  
  @media (max-width: 580px) {
    .counting-numb {
        flex-direction: row;
    }
    .counter-container {
        margin: 10px 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .counter {
        font-size: 20px;
        margin-top: 5px;
    }
    svg {
        width: 25px;
        height: 25px;
    }
    .text-counter{
      font-size: 15px;
    }
}
  .section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7; /* Reduce visibility of the image */
}

.image-overlay .overlay-i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 91, 188, 0.5); /* Alabaster color overlay */
}
.text-content a{
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  text-decoration: none;
    color:  rgb(255, 255, 255);
    padding: 10px 20px; /* Adaugă padding pentru a arăta ca un buton */
    display: inline-block; /* Asigură-te că padding-ul și bordura sunt aplicate corect */
    transition: background-color 0.3s, color 0.3s; /* Tranziție lină pentru efectul de hover */
}

.text-content a:hover{
  background-color: rgb(1, 108, 154); /* Fundal colorat la hover */
    color: white; /* Text alb la hover */
}

.image-overlay .text-content {
    position: absolute;
    top: 20%;
    left: 10%;
    color: white;
    max-width: 500px;
}

@media (max-width: 768px) {
    .image-overlay .text-content {
        top: 10%;
        left: 5%;
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .image-overlay .text-content {
        top: 5%;
        left: 5%;
        max-width: 90%;
    }
}
/* General Styles */
.site-footer {
  background-color: #009bdd;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  padding-top: 40px;
}

.footer-container {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 40px;
}

.footer-logo img {
  width: 60px;
  margin-bottom: 10px;
}

.footer-logo h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

.footer-logo p {
  margin: 5px 0 0;
  font-size: 14px;
  opacity: 0.9;
}

.footer-links, .footer-contact {
  flex: 1 1 200px;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 2px solid white;
  padding-bottom: 5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #cceeff;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-contact i {
  margin-right: 8px;
}

.footer-btn {
  display: inline-block;
  background-color: white;
  color: #009bdd;
  padding: 10px 18px;
  margin-top: 15px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}

.footer-btn:hover {
  background-color: #e0f7ff;
}

.footer-bottom {
  background-color: #ffffff;
  color: #016c9a;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

.footer-bottom a {
  color: #009bdd;
  font-weight: bold;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links,
  .footer-contact {
    margin-top: 20px;
  }
}

  .section-title {
    margin-left: 30px;
    margin-bottom: 30px;
    position: relative; /* Este necesar pentru a poziționa linia subtitlului */
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px; /* Ajustează înălțimea liniei în funcție de preferințele tale */
    width: 100%;
    height: 2px; /* Grosimea liniei */
    background-color: rgb(1, 108, 154); /* Culoarea albastru deschis */
    transition: width 0.3s ease; /* Efect de tranziție pentru animație */
  }
  
  .section-title:hover::after {
    width: 50%; /* Lungimea la care se va extinde linia când se plasează cursorul pe titlu */
  }
  /* Program cabinet*/
  .schedule1{
    margin-top: 20px;
    border-radius: 12px ;
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
    max-width: 1300px;
    flex-wrap: wrap;
    color: rgb(1, 108, 154);
    background-color:rgb(245, 245, 245);
  }
  .schedule-table{
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
  }
  .p{
    border-radius: 10px;
    color: white;
    background-color: #0086c0;
    padding: 10px;
    margin: 10px;
  }
    /* Program cabinet*/
    /* Form program */
    .contactForm {
      margin: auto;
      justify-content: center;
      align-items: center;
      max-width: 1500px;
      background-color: #0086c0;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: row;
      align-items: center;
    }

    .contactForm iframe {
      width: 100%;
      height: 500px;
      border: none;
      margin-bottom: 20px;
    }

    .contact-text {
      padding: 15px;
      align-items: center;
      justify-content: center;
      margin: auto;
      font-family: "Poppins", sans-serif;
      width: 100%;
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .contact-text label {
      display: flex;
      width: 100%;
      margin-bottom: 5px;
      color: white;
    }
    .form-tit{
      color: white;
      font-family: sans-serif, "Poppins";
      letter-spacing: 2px;
      font-size: 30px;
    }
    .contact-text input,
    .contact-text textarea {
      font-family: "Poppins", sans-serif;
      width: 100%;
      max-width: 500px;
      padding: 10px;
      border: 2px solid transparent;
      background-color: #ffffff;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease-in-out;
    }

    .contact-text textarea {
      height: 100px;
      resize: none;
    }

    .contact-text input:focus,
    .contact-text textarea:focus {
      border-color: #005f8a;
      box-shadow: 0 0 10px rgba(0, 134, 192, 0.5);
      outline: none;
      transform: scale(1.05);
    }

    .contact-text input::placeholder,
    .contact-text textarea::placeholder {
      color: rgba(0, 0, 0, 0.5);
    }

    .send .checkbox-1{
      font-size: 7px;
      width: auto;
      box-shadow: none;
    }
    .send .checkbox-1 label {
      display: flex;
      font-size: 7px;
      margin: auto;
      justify-content: center;
      align-items: center;
    }
    .send {
      display: flex;
      flex-direction: column;
      width: 500px;
      text-align: center;
    }

    .send label {
      color: white;
    }

    .send input[type="checkbox"] {

    }

    .send button {
      margin: auto;
      justify-self: center;
      align-items: center;
      width: 120px;
      height: 40px;
      margin-top: 20px;
      padding: 10px 20px;
      background-color: #005f8a;
      border: none;
      border-radius: 25px;
      color: white;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .send button:hover {
      background-color: #004568;
    }
    .urgente{
      justify-content: center;
      margin: auto;
      display: flex;
      align-items: center;
      color: #0086c0;
      font-size:40px;
    }
    @media (max-width: 600px) {
      .durere-sto{
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: center;
        font-size: 25px;
      }
      .urgente{
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: center;
        font-size: 23px;
      }
      .schedule1{
        display: none;
      }
      .contactForm{
        padding: 0px;
        flex-direction: column-reverse;
        display: flex;
        flex-wrap: wrap;
      }
      .contactForm iframe {
        height: 200px;
        width: 360px;
      }
      .send {
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
      }

      .contact-text input,
      .contact-text textarea {
        display: flex;
        font-family: "Poppins", sans-serif;
        width: 100%;
        max-width: 360px;
        padding: 10px;
        border: 2px solid transparent;
        background-color: #ffffff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
        max-width: 100%;
      }
      .contact-text{
        pad: 20px;
      }
      .informatii img{
        margin: auto;
        width: 380px;
      }
      .informatii{
        flex-wrap: wrap;
        display: flex;
        flex-direction: column-reverse;
      }
    }
     /* Form program */
     /* informatii suplimentare */
     .informatii{
      align-items: center;
      justify-content: center;
      align-self: center;
      margin: auto;
      display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    height: auto;
     }
     .informatii img{
      justify-content: center;
      align-items: center;
      align-self: center;
      padding: 20px;
      display: flex;
      flex-wrap: wrap;
     }
     .info-sup{
      margin-left: 100px;
      max-width: 600px;
      flex: 1 1 50%;
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      padding: 20px;
     }
     .info-gif{
      width: 130px;
     }
     .info-contact{
      padding: 10px;
      display: flex;
      flex-wrap: wrap;
      flex-direction: row-reverse;
     }
     .info-info{
      display:flex;
      flex-wrap: wrap;
      flex-direction: column;
     }
     .info-text{
      margin: 10px;
      flex-wrap: wrap;
      flex-direction: column;
      display: flex;
     }
     .info-text a{
      text-decoration: none;
      color: #0086c0;
     }
     .buton-info a{
      width: 300px;
      height: 40px;
      border-radius: 12px;
      background-color: #0086c0;
      text-decoration: none;
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
     }
     @media (max-width: 600px) {
      .info-sup{
        margin-left: 0px;
      }
     }
     /* informatii suplimentare */
     .google-review {
      display: flex;
      margin: auto;
      justify-content: center;
      align-items: center;
     }
     .google-review img{
      display: flex;
      margin: auto;
      justify-content: center;
      align-items: center;
      height: 175px;
     }
     .google-review {
      cursor: pointer; /* Schimbă cursorul pentru a arăta că este ceva pe care se poate da click */
    }
    .carousel-container {
      padding: 20px;
      margin: auto;
      justify-content: center;
      align-items: center;
      position: relative;
      width: auto;
      max-width: 1300px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  }
  .carousel-item img{
    border-radius: 20px;
  }
  .carousel {
      display: flex;
      transition: transform 0.5s ease-in-out;
  }
  
  .carousel-item {
      padding: 20px;
      background-color: #fff;
      text-align: center;
  }
  .testimonial-text {
      font-size: 18px;
      margin-bottom: 10px;
      color: #333;
  }
  
  .testimonial-author {
      font-size: 16px;
      color: #666;
  }
  
  .carousel-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      color: #fff;
      border: none;
      padding: 10px;
      cursor: pointer;
  }
  
  .carousel-button.prev {
      left: 10px;
  }
  
  .carousel-button.next {
      right: 10px;
  }
  
  .carousel-button:focus {
      outline: none;
  }
  .c-img{
    width: 330px;
    height: 330px;
  }
  
  @media (max-width: 600px) {
    .carousel-container {
      padding: 20px;
      margin: auto;
      justify-content: center;
      align-items: center;
      position: relative;
      width: auto;
      max-width: 900px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  }
  
  .carousel {
      display: flex;
      transition: transform 0.5s ease-in-out;
      width: 100%;
  }
  
  .carousel-item {
      min-width: 100%;
      box-sizing: border-box;
      background-color: #fff;
      text-align: center;
      padding: 20px;
  }
  
  .carousel-item img {
      border-radius: 20px;
      width: 100%;
      height: auto;
  }
  
  .carousel-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      color: #fff;
      border: none;
      padding: 10px;
      cursor: pointer;
  }
  
  .carousel-button.prev {
      left: 10px;
  }
  
  .carousel-button.next {
      right: 10px;
  }
  
  .carousel-button:focus {
      outline: none;
  }
  
  @media (max-width: 600px) {
      .carousel-item {
          padding: 10px;
      }
  
      .carousel-button {
          padding: 5px;
      }
  }
  
  }
  .panel-group {
    padding: 10px;
    width: 80%;
    margin: auto;
    max-width: 800px;
}

.panel {
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}

.panel-header {
  color: white;
    width: 100%;
    background-color: #0086c0;
    border: none;
    padding: 15px;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.panel-header:hover {
    background-color: #00b3ff;
}

.panel-content {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.panel-content p {
    margin: 10px 0;
}

.panel-content.open {
    max-height: 500px; /* Large enough to accommodate the content */
    padding: 15px;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 600px) {
    .panel-group {
        width: 95%;
        margin: -10px auto;
    }

    .panel-header {
        padding: 12px;
        font-size: 14px;
    }

    .panel-content {
        padding: 0 12px;
    }

    .panel-content p {
        margin: 8px 0;
    }

    .panel-content.open {
        padding: 12px;
    }
}
.section-title {
  margin-left: 30px;
  margin-bottom: 30px;
  position: relative; /* Este necesar pentru a poziționa linia subtitlului */
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px; /* Ajustează înălțimea liniei în funcție de preferințele tale */
  width: 30%;
  height: 2px; /* Grosimea liniei */
  background-color: #0086c0; /* Culoarea albastru deschis */
  transition: width 0.3s ease; /* Efect de tranziție pentru animație */
}

.section-title:hover::after {
  width: 50%; /* Lungimea la care se va extinde linia când se plasează cursorul pe titlu */
}

.blinking {
  display: inline-block;
  animation: blink 3s linear infinite;
}

@keyframes blink {
  0%, 50%, 100% {
      opacity: 1;
  }
  25%, 75% {
      opacity: 0;
  }
}
.whatsapp-button {
  position: fixed;
  bottom: 20px; /* Poziționează butonul în partea de jos a paginii */
  right: 20px; /* Poziționează butonul la marginea dreaptă a paginii */
  background-color: #25d366; /* Culorile brandului WhatsApp */
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 9999; /* Asigură că butonul este afișat deasupra altor elemente */
  transition: transform 0.3s ease; /* Adaugă o tranziție pentru o animație lină */

}

.whatsapp-button:hover {
  transform: scale(1.1); /* Face butonul mai mare la interacțiunea cu mouse-ul */
}
/* Stilizare buton dropdown */
.dropbtn {
  background-color:#009bdd;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
  background-color:#0fb7ff;
}

/* Stilizare conținut dropdown */
.dropdown-content {
  background-color:rgb(1, 108, 154);
  display: none;
  position: absolute;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  padding: 3px;
  color: rgb(255, 255, 255);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: rgb(1, 108, 154);}

.show {display:block;}
/* About us */
.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

a {
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  line-height: 25px;
}

.responsive-container-block.bigContainer {
  padding-top: 10px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-left: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 50px 10px 50px;
}

.mainImg {
  color: black;
  width: 100%;
  height: auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.text-blk.headingText {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  color: #0086c0;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 5px;
  margin-left: 0px;
}

.allText {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  width: 40%;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.text-blk.subHeadingText {
  color: rgb(102, 102, 102);
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.text-blk.description {
  font-size: 18px;
  line-height: 26px;
  color: rgb(102, 102, 102);
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-weight: 400;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.explore {
  font-size: 16px;
  line-height: 28px;
  color: rgb(102, 102, 102);
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(102, 102, 102);
  border-right-color: rgb(102, 102, 102);
  border-bottom-color: rgb(102, 102, 102);
  border-left-color: rgb(102, 102, 102);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  background-color: white;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 8px;
  padding-right: 40px;
  padding-bottom: 8px;
  padding-left: 40px;
}

.explore:hover {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: #0086c0;
  color: white;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
}

.responsive-container-block.Container {
  margin-top: 80px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  justify-content: center;
  align-items: center;
  max-width: 1320px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.responsive-container-block.Container.bottomContainer {
  flex-direction: row-reverse;
  margin-top: 80px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  position: static;
}

.allText.aboveText {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 40px;
}

.allText.bottomText {
  margin-top: 0px;
  margin-right: 40px;
  margin-bottom: 0px;
  margin-left: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0px;
  padding-right: 15px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.purpleBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 430px;
  background-color: #0086c0;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  position: absolute;
  bottom: -35px;
  left: -8%;
}

.purpleText {
  font-size: 18px;
  line-height: 26px;
  color: white;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.ultimateImg {
  width: 50%;
  position: relative;
}

@media (max-width: 1024px) {
  .responsive-container-block.Container {
    max-width: 850px;
  }

  .mainImg {
    width: 55%;
    height: auto;
  }

  .allText {
    width: 40%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 20px;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .responsive-container-block.Container.bottomContainer {
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
  }

  .responsive-container-block.Container {
    max-width: 830px;
  }

  .allText.aboveText {
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 40px;
  }

  .allText.bottomText {
    margin-top: 30px;
    margin-right: 40px;
    margin-bottom: 0px;
    margin-left: 0px;
    text-align: left;
  }

  .text-blk.headingText {
    text-align: center;
  }

  .allText.aboveText {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .text-blk.subHeadingText {
    text-align: left;
    font-size: 26px;
    line-height: 32px;
  }

  .text-blk.description {
    text-align: left;
    line-height: 24px;
  }

  .explore {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
  }

  .responsive-container-block.Container {
    justify-content: space-evenly;
  }

  .purpleBox {
    bottom: 10%;
  }

  .responsive-container-block.Container.bottomContainer {
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    max-width: 930px;
  }

  .allText.bottomText {
    width: 40%;
  }

  .purpleBox {
    bottom: auto;
    left: -10%;
    top: 70%;
  }

  .mainImg {
    width: 100%;
  }

  .text-blk.headingText {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .allText {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .responsive-container-block.Container {
    flex-direction: column;
    height: auto;
  }

  .text-blk.headingText {
    text-align: center;
  }

  .text-blk.subHeadingText {
    text-align: center;
    font-size: 24px;
  }

  .text-blk.description {
    text-align: center;
    font-size: 18px;
  }

  .allText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .allText.aboveText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.Container {
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
  }

  .responsive-container-block.Container.bottomContainer {
    margin-top: 50px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
  }

  .allText.bottomText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .mainImg {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: -70px;
    margin-left: 0px;
  }

  .responsive-container-block.Container.bottomContainer {
    flex-direction: column;
  }

  .ultimateImg {
    width: 100%;
  }

  .purpleBox {
    position: static;
  }

  .allText.bottomText {
    width: 100%;
    align-items: flex-start;
  }

  .text-blk.headingText {
    text-align: left;
  }

  .text-blk.subHeadingText {
    text-align: left;
  }

  .text-blk.description {
    text-align: left;
  }

  .ultimateImg {
    position: static;
  }

  .mainImg {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .ultimateImg {
    position: relative;
  }

  .purpleBox {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    position: absolute;
    left: 0px;
    top: 80%;
  }

  .allText.bottomText {
    margin-top: 100px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }
}

@media (max-width: 500px) {
  .responsive-container-block.Container {
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    width: 100%;
    max-width: 100%;
  }

  .mainImg {
    width: 100%;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 25px;
    padding-bottom: 10px;
    padding-left: 25px;
  }

  .text-blk.subHeadingText {
    font-size: 24px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 28px;
  }

  .text-blk.description {
    font-size: 16px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 22px;
  }

  .allText {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    width: 100%;
  }

  .allText.bottomText {
    margin-top: 50px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding: 0 0 0 0;
    margin: 30px 0 0 0;
  }

  .ultimateImg {
    position: static;
  }

  .purpleBox {
    position: static;
  }

  .stars {
    width: 55%;
  }

  .allText.bottomText {
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
  }

  .purpleText {
    font-size: 16px;
    line-height: 22px;
  }

  .explore {
    padding: 6px 35px 6px 35px;
    font-size: 15px;
  }
}
.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}
.section-info {
  flex-direction: row;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 10px;
  max-width: 500px;
  text-align: center;
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #eeeeee;
}

.card h1 {
  color: #333333;
  font-size: 24px;
  margin: 20px 0;
  padding: 0 10px;
}

.card p {
  color: #666666;
  font-size: 16px;
  padding: 0 20px 20px;
}

@media screen and (max-width: 768px) {
  .section {
    flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  .card {
    margin: 10px;
    max-width: 90%;
  }

  .card h1 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }
  .section-info{
    display: flex;
    flex-direction: column;
  }
  .headline-text{
    font-size:22px;
  }
  .lista-oferte{
    margin-left: -30px;
  }
}
.divertisement {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background-color: #f9f9f9;
}

.reclama {
  flex: 2; /* Asigură că secțiunea reclamei ocupă o parte din spațiu */
  max-width: 60%; /* Controlează lățimea maximă a secțiunii reclamei */
  text-align: center;
}

.reclama img {
  max-width: 100%;
  height: auto;
}

.text-content {
  flex: 1; /* Asigură că secțiunea textului ocupă mai mult spațiu decât reclama */
  background-color: #0086c0;
  color: white;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.headline-text {
  font-size: 24px;
  margin-bottom: 15px;
}

.text-content p,
.text-content ul {
  margin-bottom: 15px;
}

.text-content ul {
  list-style-type: disc;
  padding-left: 20px;
}

.text-content ul li {
  margin-bottom: 10px;
}

.dropbtn1 {
  background-color: #ffffff;
  color: #0096dc;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.show {
  display: block;
}

/* Media Queries pentru Mobile Responsiveness */
@media (max-width: 768px) {
  .divertisement {
      flex-direction: column;
      align-items: center;
  }

  .reclama, .text-content {
      max-width: 100%;
  }

  .text-content {
      padding: 10px;
  }

  .headline-text {
      font-size: 20px;
  }

  .dropbtn {
      width: 100%;
  }
}
.work-hours {
  margin-top: 20px;
  padding: 15px;
  background-color: #f1f1f1;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.work-hours h2 {
  margin-bottom: 10px;
  font-size: 22px;
  color:#005f8a;
}

.schedule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.day {
  font-weight: bold;
  color:#0086c0;
}

.time {
  text-align: right;
  color: #555;
}

/* Media Queries pentru Mobile Responsiveness */
@media (max-width: 768px) {
  .schedule {
      text-align: center;
  }
}

