body {
    font-family: 'Roboto', 'Raleway', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.2;
}

a {
    text-decoration: none;
    text-underline: none;
    cursor: pointer;
}
p {
    margin: 0;
    padding-bottom: 20px;
    font-size: 1.2em;
}
ul {
    font-size: 1.2em;
    margin: 0;
    padding-bottom: 20px;
}

.caption {
    padding-top: 20px;
    font-weight: bold;
    font-size: 1.7em;
}
.highlight {
    color: #EE2C7B;
    font-weight: bold;
}
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.content {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
}
.content a {
    color: #29ABE2;
}

.images {
    width: 100%;
    max-width: 992px;
    margin: 0 auto;
    padding: 20px 0;
}

.bg-light-blue {
    background-color: #C2E4FF ;
    color: black;
}

.bg-dark-blue {
    background-color: #29ABE2 ;
    color: white;
}

.bg-dark-blue a{
    color: #EE2C7B ;
    text-decoration: underline;
}

.responsive-image {
    max-width: 992px;
    display: block;
    margin: 0 auto; /* Центрирование */
}

.rating {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.rating_card img {
    width: 300px;
    max-width: 100%;
    height: 90px;
}

.reviews {
    display: flex;
    flex-direction: column;
}

.review_card {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-bottom: 40px;
}

.review_card_photo {
    padding-right: 30px;
}
.reg_bnt a{
    display: block;
    margin: 50px auto;
    width: 250px;
    height: 26px;
    text-align: center;
    background-color: #0071BC;
    color: white;
    font-weight: bold;
    padding: 30px 0;
    border-radius: 50px;
    font-size: 1.5em;
}

.reg_bnt a:hover {
    background-color: #0071BC;
}

.about_image {
    width: 100%;
    padding-bottom: 20px;
}

.timeline {
    position: relative;
    margin: 40px 0;
}

.timeline h2 {
    color: #3498db;
    margin-top: 40px;
    padding-left: 10px;
    border-left: 4px solid #3498db;
}

.timeline h3 {
    color: #EE2C7B;
    margin-top: 25px;
}

.timeline p {
    margin: 15px 0;
    padding-left: 15px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #3498db;
}

.event {
    position: relative;
    margin-bottom: 30px;
    padding-left: 40px;
}

.event::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #EE2C7B;
    border: 2px solid #3498db;
}



.event_highlight {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #EE2C7B;
    margin: 20px 0;
}

.header {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.header_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.header_logos img{
    max-height: 80px;
}
.background-image{
    z-index: -1;
    height: auto;
    width: 100%;

}


.header_content {
    padding-left: 20px;
    max-width: 768px;
    width: 100%;
}

.header_content p {
    font-size: 1.5em;
    color: black;
    width: 400px;
    font-weight: bold;
}

.header_ {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.lang {
    display: flex;
    flex-direction: row;
    padding-top: 20px;
    padding-right: 20px;
}

.lang a {
    display: block;
    width: 30px;
    text-align: center;
    height: 20px;
    border: #0071BC 2px solid;
    text-decoration: none;
    color: #0071BC;
}

a.lang_active {
    background-color: #0071BC;
    color: white;
}

.headline {
    position: absolute;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    top: 0;
    bottom: 0;
    width: 100%;
}


.accordion {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    font-size: 1.2em;
}
@media screen and (min-width: 500px) {
    .accordion {
        font-size: 1.5em;
    }
}

.accordion-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f5f5f5;
    cursor: pointer;
    transition: background 0.2s ease;
}


.accordion-header:hover {
    background: #e9e9e9;
    border: 0px solid #EE2C7B;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    background: white;
    font-size: 0.8em;
}

.accordion-item.active .accordion-content {
    max-height: 1000px; /* Достаточно большое значение для контента */
    padding: 15px 20px;
}

.accordion-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion a {
    color: #29ABE2;
}

.carousel {
    position: relative;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
}

.carousel-item img {
    width: 100%;
    display: block;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2em;
    background: transparent;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
}

.indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}

.indicator.active {
    background: white;
}
iframe {
    width: 100%;
    height: 400px;
    padding: 10px 0;
}
