/* static-pages.css */
.static-page__content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.static-page__title {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 30px;
}

.static-page__text {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #2d3748;
}

.static-page__text p {
    margin-bottom: 1.5em;
}

/* Контакты */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--primary-color);
}

.contacts-map {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

/* Особенности */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background: #f8fafc;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.testimonial-photo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    margin: 10px 0;
    position: relative;
}

.testimonial-text:before {
    content: " ";
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -15px;
    color: #e2e8f0;
    z-index: -1;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .contacts-map {
        height: 400px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .static-page__content {
        padding: 20px;
    }

    .static-page__title {
        font-size: 2rem;
    }
}