html,body{
    max-width: 100%;
    overflow-x: hidden;
}




/* Обо мне */
.about-section {
    background-color: #85678f97;
    padding: 60px 20px;
    color: #333;
    font-family: 'Arial', sans-serif;
  }

  .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #a64ac9;
    margin-bottom: 40px;
    position: relative;
  }

  .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #691681;
    margin: 10px auto 0;
    border-radius: 2px;
  }

  .about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
  }

  .about-content .highlight {
    color: #a64ac9;
    font-weight: bold;
  }

  .about-content .signature {
    margin-top: 30px;
    font-style: italic;
    color: #555;
  }







/* Галерея*/
#gallery {
    text-align: center;
    padding: 50px 10%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}




/* Вакансии */
#vacancies {
    text-align: center;
    padding: 50px 10%;
}

.vacancy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.vacancy img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
}


.vacancy-slide {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    max-width: 700px;
    margin: 30px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: #333;
    font-family: 'Arial', sans-serif;
  }

  .vacancy-slide h2,
  .vacancy-slide h3 {
    color: #a64ac9;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .vacancy-slide ul {
    padding-left: 20px;
  }

  .vacancy-slide ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
  }

  .vacancy-slide ul li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: #a64ac9;
  }






.price-list {
    display: none;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}



ul {
    list-style: none;
    padding: 0;
}

.li-price {
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.li-price:last-child {
    border-bottom: none;
}

.price {
    font-weight: bold;
    color: #6a1b9a;
}



.pulse-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}

.text {
    font-size: 14px;
    color: #6a1b9a;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
    animation: fadeIn 1.5s infinite alternate;
}

.pulse-button {
    background-color: #6a1b9a;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(106, 27, 154, 0.5);
    position: relative;
    z-index: 2;
}

.pulse-wrapper::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(106, 27, 154, 0.3);
    border-radius: 50%;
    z-index: 1;
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}


.rounded-gallery {
    border-radius: 15px;
}


@media (max-width: 700px) {

}







.section-title{

}
.schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
  }

  .schedule-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0dbe7;
  }

  .schedule-list li:last-child {
    border-bottom: none;
  }
