/* Общие стили для страницы */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    padding: 20px;
}

/* Анимации (замена AOS) */
@keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-up {
    opacity: 0;
    animation: fade-up 0.8s ease-out forwards;
}

/* Hero Section */
.camera-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    background: #1a73e8;
    color: #fff;
    padding: 60px 20px;
    margin: 0 auto 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.3);
    max-width: 1200px;
    width: calc(100% - 40px);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

.cta-content p {
    font-size: 16px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Price Table */
.service-section {
    margin-bottom: 40px;
}

.service-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    color: #1a73e8;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.table-container {
    overflow-x: auto;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.price-table th {
    background: #1a73e8;
    color: #fff;
    padding: 15px;
    font-weight: 600;
}

.price-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
}

.price-table tr:nth-child(even) {
    background: #f8fafd;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    padding: 18px 25px;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question i.fa-chevron-up {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fdfdfd;
}

.faq-answer p {
    padding: 20px 25px;
    margin: 0;
    color: #555;
    line-height: 1.7;
}

/* Адаптация */
@media (max-width: 768px) {
    .camera-hero {
        padding: 60px 15px;
    }

    .camera-hero h1 {
        font-size: 1.8rem;
    }

    .camera-hero p {
        font-size: 1rem;
    }

    .cta-section {
        width: calc(100% - 30px);
        padding: 40px 15px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .price-table th,
    .price-table td {
        padding: 12px;
        font-size: 14px;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .camera-hero h1 {
        font-size: 1.5rem;
    }

    .camera-hero p {
        font-size: 0.9rem;
    }

    .cta-content h2 {
        font-size: 20px;
    }

    .price-table th,
    .price-table td {
        font-size: 12px;
    }
}