/* Стили для раздела о нас */
#about {
    background-color: var(--light-color);
}

.about-content {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.about-image {
    flex: 1;
    min-height: 500px;
    background-image: url('https://images.pexels.com/photos/696218/pexels-photo-696218.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.about-text p {
    margin-bottom: var(--space-sm);
    line-height: 1.8;
}

/* Стили для раздела специализации */
#special {
    background-color: var(--dark-color);
    color: var(--text-light);
    padding: var(--space-xl) 0;
}

.special-content {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.special-text {
    flex: 1;
}

.special-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: var(--space-sm);
}

.special-text p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.special-features {
    margin-left: var(--space-sm);
}

.special-features li {
    margin-bottom: var(--space-xs);
    position: relative;
    padding-left: var(--space-sm);
}

.special-features li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.special-image {
    flex: 1;
    min-height: 400px;
    background-image: url('https://images.pexels.com/photos/1251208/pexels-photo-1251208.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
}