/* Основные стили */
:root {
    --orange: #FF6B00;
    --orange-dark: #e05e00;
    --orange-light: rgba(255, 107, 0, 0.1);
    --text-dark: #FF6B00;
    --text-light: #ffffff;
    --white: #005F5F;
    --black: #000000;
    --green-transparent: #005F5F(45, 123, 106, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

h2 span {
    color: var(--orange);
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--orange);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.4s ease;
    border: 2px solid var(--orange);
}

.btn:hover {
    background: transparent;
    color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

/* Шапка */
header {
    background: var(--white);
    color: var(--text-light);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.phone-btn {
    background: var(--orange);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
/* Мобильное меню */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

/* Стили для скролла на мобильных */
@media (max-width: 768px) {
    header {
        padding: 10px 0;
        transition: transform 0.3s ease;
    }
    
    header.hidden {
        transform: translateY(-100%);
    }
    
    header.visible {
        transform: translateY(0);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--green-transparent);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .phone-btn {
        display: none;
    }
}
/* Анимация бургер-кнопки */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}
/* Прозрачный хедер */
header {
    background: var(--white);
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Стиль при скролле */
header.scrolled {
    background: rgba(45, 123, 106, 0.85); 
    backdrop-filter: blur(5px); 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Для плавного появления */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

header.scrolled {
    animation: fadeIn 0.0s ease;
}

/* Блок 1: Герой */
.hero {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding-top: 150px;
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero p {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 30px;
}

.hero-features {
    list-style: none;
    margin-bottom: 40px;
}

.hero-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.hero-features li::before {
    content: "✓";
    color: var(--orange);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.hero-form {
    flex: 0 0 400px;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(50px);
    opacity: 0;
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.form-header p {
    color: var(--orange);
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Блок 2: Услуги */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-icon img {
    width: 55%;
    height: 55%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,107,0,0.15);
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Блок 3: О компании */
.about {
    background: var(--white);
    color: var(--text-light); /* Добавляем белый цвет текста для всего блока */
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
    color: var(--text-light); /* Убедимся, что текст белый */
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    color: var(--text-dark); /* Белый цвет для статистики */
}

.stat-item {
    text-align: center;
    color: var(--text-light); /* Дублируем для надежности */
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-light); /* Меняем с var(--text-light) на var(--white) */
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-light); /* Белый цвет для описания статистики */
}

.about-image {
    flex: 0 0 500px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
/* Блок 4: Юристы */

.team {
    background: var(--white);
    color: var(--text-light); 
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s ease;
    color: inherit; 
}

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--text-light); 
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-card h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
    color: var(--text-light); 
}

.team-card p {
    color: var(--text-light); 
    font-weight: 500;
    margin-bottom: 15px;
}

/* Блок 5: Кейсы */

.cases {
    background: #f9f9f9;
    color: var(--white); /
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: var(--white);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.case-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    color: var(--white); 
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-image {
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-content {
    padding: 25px;
    color: var(--white); 
}

.case-tag {
    background: var(--white);
    color: var(--text-light);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    border: 1px solid var(--white); 
}

.text-center {
    text-align: center;
    margin-top: 50px;
    color: var(--white);
}


.case-content h3,
.case-content p {
    color: var(--white);
}

/* Блок 6: FAQ */
.faq {
    background: white;
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #2d7b6a !important;
    color: white;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-answer {
    background: white;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 20px 0;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Блок 7: Контакты */

.contact {
    background: var(--white); 
    color: var(--text-light); 
    text-align: center;
    padding: 100px 0; 
}

.contact h2 {
    color: var(--text-light); 
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--text-light); 
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light); 
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.contact-icon svg,
.contact-icon i {
    color: var(--white); 
}

/* Футер */
footer {
    background: var(--white);
    color: var(--text-light);
    padding: 50px 0 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
}

.copyright {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Адаптивность */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero .container,
    .about-content {
        flex-direction: column;
    }
    
    .hero-form,
    .about-image {
        width: 100%;
        flex: 1 1 100%;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .services-grid,
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 20px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
}
/* Стили для страницы услуг */
.services-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.services-page h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.8rem;
    color: var(--orange);
}

.subtitle {
    text-align: center;
    color: var(--orange);
    margin-bottom: 60px;
    font-size: 1.2rem;
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.category-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    color: var(--text-light);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255,107,0,0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.category-icon img {
    width: 40%;
    height: 40%;
    object-fit: contain;
}

.service-list {
    list-style: none;
    margin: 25px 0;
    color: var(--text-light);
}

.service-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
    color: var(--text-light);
}

.service-list li::before {
    content: "•";
    color: var(--text-light);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.work-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.step {
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: var(--text-light);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--text-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

nav a.active {
    font-weight: bold;
    position: relative;
    color: var(--text-light);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
}
/* Стили для страницы "Юристы" */
.lawyers-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.section-description {
    text-align: center;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.lawyers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.lawyer-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.lawyer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255,107,0,0.1);
}

.lawyer-photo {
    height: 250px;
    overflow: hidden;
}

.lawyer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lawyer-card:hover .lawyer-photo img {
    transform: scale(1.05);
}

.lawyer-info {
    padding: 25px;
    color: var(--text-light);
}

.specialization {
    color: var(--orange);
    font-weight: 500;
    margin: 10px 0;
}

.experience {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.services-list {
    list-style: none;
    margin: 20px 0;
    color: var(--text-light);
}

.services-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
    color: var(--text-light);
}

.services-list li::before {
    content: "•";
    color: var(--text-light);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.advantages-section {
    padding: 60px 0;
    background: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Три колонки для десктопа */
    gap: 30px;
    margin-top: 50px;
}

.advantage-item {
    text-align: center;
    padding: 30px;
    background: var(--orange);
    border-radius: 10px;
    color: white;
    transition: transform 0.3s ease; /* Добавляем анимацию при наведении */
}

.advantage-item:hover {
    transform: translateY(-5px); /* Эффект поднятия при наведении */
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.advantage-item h3 {
    margin-bottom: 15px;
    color: white;
    font-size: 1.3rem;
}

.advantage-item p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.5;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .advantages-section {
        padding: 40px 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr; /* Одна колонка на мобильных */
        gap: 20px;
        margin-top: 30px;
        padding: 0 15px; /* Добавляем отступы по бокам */
    }
    
    .advantage-item {
        padding: 25px 20px;
    }
    
    .advantage-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .advantage-item h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
}

/* Планшеты (промежуточный размер) */
@media (min-width: 769px) and (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr); /* Две колонки для планшетов */
    }
}
/* Стили для страницы контактов */
/* Контакты - Основной блок */
.contacts-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.contacts-section h1 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contacts-section h1 span {
    color: var(--orange);
}

/* Сетка контактов */
.contacts-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

@media (min-width: 992px) {
    .contacts-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

/* Форма обратной связи */
.contacts-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    color: var(--text-light);
}

.contacts-form .form-header {
    margin-bottom: 30px;
    text-align: center;
}

.contacts-form .form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.contacts-form .form-header p {
    color: var(--orange);
    font-weight: 500;
}

.contacts-form .form-group {
    margin-bottom: 20px;
}

.contacts-form input,
.contacts-form textarea,
.contacts-form select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contacts-form input::placeholder,
.contacts-form textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.contacts-form input:focus,
.contacts-form textarea:focus {
    border-color: var(--orange);
    outline: none;
    background: rgba(255,255,255,0.2);
}

.contacts-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contacts-form .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    background: var(--orange);
    border: none;
    margin-top: 10px;
}

.contacts-form .btn:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
}

/* Блок контактной информации */
.contacts-info {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.office-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--green-transparent);
}

.contact-details-card {
    padding: 40px;
    color: var(--text-light);
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-light);
}

.contact-items-container {
    display: grid;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon-circle {
    width: 50px;
    height: 50px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-circle .icon {
    font-size: 1.5rem;
    color: var(--text-light);
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

.contact-value,
.phone-link,
.email-link {
    color: var(--text-light);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.phone-link:hover,
.email-link:hover {
    opacity: 1;
    color: var(--orange);
}

.work-hours {
    display: block;
    margin-bottom: 8px;
}

/* Блок карты */
.map-section {
    padding: 80px 0;
    background: var(--white);
}

.map-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.map-section h2 span {
    color: var(--orange);
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Адаптивность */
@media (max-width: 768px) {
    .contacts-section {
        padding: 80px 0;
    }
    
    .contacts-form,
    .contact-details-card {
        padding: 30px;
    }
    
    .contact-image-wrapper {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .contacts-section h1 {
        font-size: 2.2rem;
    }
    
    .contacts-form input,
    .contacts-form textarea {
        padding: 12px 15px;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-icon-circle {
        width: 40px;
        height: 40px;
    }
}
/* Стили для простых текстовых страниц */
.simple-page {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.simple-page h1 {
    color: var(--orange);
    margin-bottom: 30px;
    text-align: center;
}

.simple-page h2 {
    color: var(--orange);
    margin: 25px 0 15px;
    font-size: 1.4em;
}

.simple-page p, 
.simple-page ul {
    margin-bottom: 15px;
}

.simple-page ul {
    padding-left: 20px;
}

.simple-page li {
    margin-bottom: 8px;
}

.content-block {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.signature {
    margin-top: 30px;
    text-align: right;
    font-style: italic;
}

@media (max-width: 768px) {
    .simple-page {
        padding: 20px 15px;
    }
    
    .content-block {
        padding: 20px 15px;
    }
}