

/* Section header */
.header {
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 50;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-container {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 15px 0;
}

/* Логотип */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 260px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-title {
    color: #2c5aa9;
    font: 700 24px/1.2 'Helvetica', Arial, sans-serif;
    margin: 0;
}

.logo-subtitle {
    color: #2c5aa9;
    font: 500 16px/1.2 'Helvetica', Arial, sans-serif;
    opacity: 0.9;
}

/* Контакты */
.contacts-group {
    flex-grow: 1;
    display: flex;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-link {
    color: #2c5aa9;
    font: 700 20px/1.2 'Helvetica', Arial, sans-serif;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #1d3d6e;
}

.contact-info {
    font: 500 14px/1.3 'Helvetica', Arial, sans-serif;
    color: #444;
}

/* Кнопки */
.actions-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.consult-btn {
    background: #2c5aa9;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font: 600 16px 'Helvetica', Arial, sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.consult-btn:hover {
    background: #1d3d6e;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.telegram-btn {
    background: #2c5aa9;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
}

.telegram-btn:hover {
    transform: scale(1.05);
    background: #006699;
}

.telegram-btn svg {
    width: 26px;
    height: 26px;
    margin-left: 2px;
}

@media (max-width: 1200px) {
    .contacts-group {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }
    
    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .logo-group {
        order: 1;
        text-align: center;
    }
    
    .contacts-group {
        order: 3;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .actions-group {
        order: 2;
        justify-content: center;
        min-width: auto;
    }
    
    .logo {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-link {
        font-size: 18px;
    }
    
    .contact-info div {
        white-space: normal;
        line-height: 1.4;
    }
    
    .consult-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .logo-title {
        font-size: 22px;
    }
    
    .logo-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .contacts-group {
        flex-direction: column;
    }
    
    .contact-info {
        font-size: 13px;
    }
    
    .actions-group {
        flex-wrap: wrap;
    }
    
    .logo {
        flex-direction: column;
        gap: 8px;
    }
}


/* Section description */
.description-section {
    position: relative;
    min-height: 80vh; /* Уменьшил высоту для лучшей адаптации */
    background: linear-gradient(
        rgba(0, 0, 0, 0.7), 
        rgba(0, 0, 0, 0.7)
    ), url('../img/bg-mini.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.description-overlay {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.description-content {
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
}

.description-header {
    margin-bottom: 2rem;
}

.description-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem); /* Адаптивный размер шрифта */
    line-height: 1.3;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.description-subtitle {
    font-size: 1.25rem;
    color: #e0e0e0;
    font-weight: 300;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    color: #f0f0f0;
}

/* Анимации */
.description-content > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .description-section {
        min-height: 60vh;
    }
    
    .description-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .description-subtitle {
        font-size: 1.1rem;
    }
    
    .description-text {
        font-size: 1rem;
        padding: 0 10px;
    }
}


/* profile */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #7f8c8d;
    --accent-border: #ecf0f1;
    --text-dark: #34495e;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.profile {
    padding: 40px 0;
    background: #f9fbfd;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.profile-main-title {
    text-align: center;
    color: #2c5aa9;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin: 40px 0 30px;
    font-weight: 700;
    line-height: 1.3;
}

.profile-card {
    display: flex;
    gap: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 40px;
    margin: 0 auto;
}

.text-content {
    flex: 1;
    min-width: 300px;
}

.fullname {
    color: var(--primary-color);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.position {
    color: #2c5aa9;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.registry {
    color: var(--secondary-color);
    font-size: clamp(0.95rem, 1.1vw, 1rem);
    line-height: 1.7;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--accent-border);
}

.info-item {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: clamp(1rem, 1.1vw, 1.05rem);
}

.info-item-list {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 25px;
}

.info-item-list li {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-size: clamp(0.95rem, 1.1vw, 1rem);
    line-height: 1.6;
    position: relative;
}

.photo-side {
    flex: 0 0 42%;
    display: flex;
    align-items: flex-start;
}

.photo-frame {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #f8f9fa;
    background: #f1f5f9;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.photo-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Адаптивные стили */
@media (max-width: 992px) {
    .profile-card {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }
    
    .text-content {
        order: 2;
    }
    
    .photo-side {
        order: 1;
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .registry {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .profile {
        padding: 30px 0;
    }
    
    .profile-card {
        padding: 25px;
    }
    
    .profile-main-title {
        margin: 30px 0 25px;
    }
    
    .info-item-list {
        padding-left: 0px;
    }
}

@media (max-width: 576px) {
    .profile-card {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .fullname {
        font-size: 1.5rem;
    }
    
    .position {
        font-size: 0.95rem;
    }
    
    .info-item-list li {
        font-size: 0.9rem;
    }
    
    .photo-frame {
        border-width: 3px;
    }
}
@media (max-width: 360px) {
    .info-item-list {
        width: 288px;
    }
}

/* section service */
:root {
    --primary-color: #2c3e50;
    --accent-color: #2c5aa9;
    --text-color: #34495e;
    --bg-light: #f8f9fa;
}

.services {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
}

.services__main-title {
    text-align: center;
    margin-bottom: 30px;
    color: #2c5aa9;
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 15px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.service-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.service-card__title {
    color: var(--text-color);
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.3;
    flex: 1;
}

.service-card__icon {
    font-size: 32px;
    margin-left: 15px;
    opacity: 0.8;
}

.service-card__list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.service-card__list li {
    position: relative;
    margin-bottom: 15px;
    line-height: 1.6;
    padding-left: 30px;
    color: #555;
}

.service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    background: var(--accent-color);
    padding: 14px 30px;
    border-radius: 6px;
    transition: 
        background 0.3s,
        transform 0.2s;
    font-weight: 500;
}

.service-card__link:hover {
    background: #2471a3;
    transform: translateY(-2px);
}

.link-arrow {
    margin-left: 10px;
    transition: transform 0.2s;
}

.service-card__link:hover .link-arrow {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .services__main-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
    }
    
    .service-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .service-card__list li {
        font-size: 0.95rem;
    }
    
    .service-card__link {
        width: 100%;
        justify-content: center;
    }
}

/* consult section */
.consult-section {
    padding: 60px 0;
    background: #2c5aa9;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.consult-header {
    margin-bottom: 40px;
    text-align: center;
}

.consult-title {
    font-size: 32px;
    margin-bottom: 0;
    color: #ffffff;
    line-height: 1.3;
}

.consult-subtitle {
    display: block;
    font-size: 20px;
    color: #ffffff;
    margin: 8px 0 15px;
    font-weight: 400;
}

.phone-link {
    display: inline-block;
    font-size: 24px;
    color: #ffffff;
    text-decoration: none;
    margin: 15px 0;
    transition: all 0.2s ease;
}

.phone-link:hover {
    color: #f7f0f0;
    transform: translateY(-1px);
}

.telegram-carta {
    text-align: center;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.telegram-title {
    font-size: 22px;
    color: #2d3748;
    margin: 0 0 20px 0;
}

.telegram-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0088cc;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.telegram-button:hover {
    background: #0077b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.telegram-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .consult-section {
        padding: 40px 0;
    }
    
    .consult-title {
        font-size: 26px;
    }
    
    .consult-subtitle {
        font-size: 18px;
    }
    
    .phone-link {
        font-size: 20px;
    }
    
    .telegram-title {
        font-size: 19px;
    }
    
    .telegram-button {
        padding: 10px 20px;
        font-size: 15px;
    }
}

/* Section advantages */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #555;
    --background: #f8f9fa;
    --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.advantages {
    padding: 4rem 1.25rem;
    background: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 3rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0.5rem;
}

.advantage-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.advantage-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3498db 0%, #2c3e50 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advantage-card:hover::after {
    opacity: 1;
}

.advantage-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantage-text {
    line-height: 1.6;
    color: var(--secondary-color);
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .advantages-grid {
        gap: 1.5rem;
    }
    
    .advantage-card {
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .advantages {
        padding: 2.5rem 1rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-card {
        padding: 1.5rem;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .advantage-card {
        padding: 1.25rem;
    }
    
    .advantage-title {
        font-size: 1.1rem;
    }
    
    .advantage-text {
        font-size: 0.9rem;
    }
}


/* section reviews */
.reviews {
    background: #f8f9fa;
    padding: 80px 0px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c5aa9;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card::before {
    content: "“";
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    color: #e9ecef;
    font-family: Arial;
}

.review-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3498db 0%, #2c3e50 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover::after {
    opacity: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-author {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}

.review-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.review-text {
    line-height: 1.6;
    color: #444;
    margin: 0;
}

@media (max-width: 768px) {
    .reviews {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.avito-card {
    text-align: center;
    margin-top: 60px;
    padding: 0 15px;
}

.avito-title {
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.avito-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    border-radius: 2px;
}

.avito-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #3366CC 0%, #6699FF 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(51, 102, 204, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    min-width: 260px;
    max-width: 100%;
}

.avito-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3366CC 0%, #6699FF 100%);
    border-radius: 50px;
    z-index: -1;
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.avito-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(51, 102, 204, 0.4); /* Исправленная тень */
}

.avito-button:hover::before {
    opacity: 0.85; /* Плавное затемнение вместо смены цвета */
}

.avito-button:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: 0 4px 12px rgba(51, 102, 204, 0.4);
}

.avito-button:hover::before {
    left: 100%;
}

.avito-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.avito-button:hover .avito-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* АДАПТИВ ДЛЯ КНОПКИ */
@media (max-width: 768px) {
    .avito-card {
        margin-top: 45px;
    }
    
    .avito-button {
        /* width: 100%; */
        padding: 18px 20px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .avito-title {
        font-size: 1.6rem;
    }
    
    .avito-button {
        flex-direction: column;
        gap: 8px;
        /* padding: 16px 15px; */
    }
}

@media (max-width: 360px) {
    .avito-card{
        padding-left: 0px;
    }
}



/* Sections contacts */
.contacts {
    padding: 60px 0;
    background: #f9fafb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contacts__full__info {
    display: flex;
    gap: 30px;
}

.contacts__title {
    font-size: 2.25rem;
    margin-bottom: 1.5em;
    color: #2c5aa9;
    position: relative;
    text-align: center;
}

.contacts__info {
    flex: 0 1 45%;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.contact-item-map {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

/* .contact-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #2563eb;
    margin-top: 3px;
} */

.contacts__content p {
    margin: 0;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: #374151;
    line-height: 1.6;
    word-break: break-word;
}

.contacts__content a {
    color: #2563eb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contacts__content a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.contacts__map {
    flex: 1;
    height: 500px; /* Базовая высота для десктопов */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
}

.contacts__map {
    flex: 1;
    height: 500px; /* Базовая высота для десктопов */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 1200px) {
    .contacts__map {
        height: 450px;
    }

    .contacts__info {
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .contacts__map {
        height: 400px;
    }

    .contact-item-map {
        gap: 12px;
    }
    
    .contacts__content p {
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .contacts__full__info {
        flex-direction: column; /* Меняем направление на вертикальное */
        gap: 0; /* Убираем промежутки между элементами */
    }
    
    .contacts__info {
        width: 100%;
        margin-bottom: 20px; /* Отступ между блоками */
    }
    
    .contacts__map {
        width: 100%;
        height: 350px;
        margin-top: 0; /* Сбрасываем верхний отступ */
        order: 2; /* Перемещаем карту вниз */
    }
}

@media (max-width: 576px) {
    .contacts__map {
        height: 300px;
        border-radius: 8px;
    }
    .contact-item-map {
        gap: 10px;
        margin-bottom: 1.2rem;
    }
    /* .contact-icon {
        width: 20px;
        height: 20px;
    } */
    .contacts__info {
        padding: 20px 15px;
    }
    .contacts__content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .contacts__map {
        height: 250px;
    }
    .contacts__content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .contacts__title {
        font-size: 1.5rem;
    }
    .contacts__info {
        padding: 18px 12px;
    }
}

@media (max-width: 360px) {
    .contacts__map {
        height: 220px;
    }
    .contacts__content p {
        font-size: 0.85rem;
    }
    /* .contact-icon {
        width: 18px;
        height: 18px;
    } */
    .contacts__title {
        font-size: 1.4rem;
    }
}


/* Для элементов с длинным текстом */
[itemprop="address"] {
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

time[itemprop="openingHours"] {
    display: inline-block;
    margin-bottom: 4px;
}


/* Section footer */
/* Стили для секции футера */
.section-footer {
    display: flex;
    background-color: #2c5aa9;
    min-height: 70px;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
}

/* Контейнер для содержимого футера */
.footer-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* Стили текстового блока */
.footer-description {
    color: #ffffff;
    font-weight: bold;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    padding: 8px 0;
}

a.admin-button {
    text-decoration: none;
    color: white;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 480px) {
    .section-footer {
        padding: 10px 15px;
    }
    .footer-description {
        font-size: 0.875rem; /* ~14px */
    }
}

