.services-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-title {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-item {
    text-align: center;
    padding: 30px 30px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.service-item i {
    font-size: 2em;
    color: var(--dorado);
}

.service-item p {
    margin-top: 20px;
}

.pricing-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.pricing-table {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.pricing-header {
    padding: 30px;
    text-align: center;
    background: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 20px 30px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-table th {
    background: #fafafa;
    font-weight: 500;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.price {
    color: var(--dorado);
}

.catalog-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.catalog-section h2 {
    margin-bottom: 60px;
}

.pdf-viewer {
    width: 80%;
    height: 800px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: white;
}

.pdf-fallback {
    display: none;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 60px 20px;
    background: white;
    border: 1px solid #e0e0e0;
}

.btn-catalog {
    display: inline-flex;
    gap: 12px;
    color: #fff;
    background: linear-gradient(5deg, #BFA56A 0%, #D1B370 50%, #E3C57D 100%);
    width: fit-content;
    padding: 10px 25px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-tables {
        grid-template-columns: 1fr;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 15px 20px;
        font-size: 0.9em;
    }

    .catalog-section {
        padding: 60px 20px;
    }

    .pdf-viewer {
        display: none;
    }

    .pdf-fallback {
        display: flex;
    }
}