/* Prices Page Specific Styles */

.price-intro {
    text-align: center;
    margin-bottom: 3em;
    padding: 1.5em;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.price-intro p {
    font-size: 1.1em;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Price Sections */
.price-section {
    margin-bottom: 3em;
}

.price-section h2 {
    color: #333;
    font-size: 2em;
    margin-bottom: 1em;
    padding-bottom: 0.5em;
    border-bottom: 3px solid #69a03d;
}

.section-intro {
    color: #666;
    font-size: 1.05em;
    margin-bottom: 1.5em;
    line-height: 1.6;
}

/* Price Grid for Cards */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2em;
    margin-bottom: 2em;
}

.price-card {
    background: white;
    border: none;
    border-radius: 12px;
    padding: 2.5em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.price-card-highlight {
    border: none;
    background: white;
}

.price-card h3 {
    color: #333;
    font-size: 1.5em;
    margin: 0 0 0.5em 0;
    text-align: center;
}

.price-amount {
    font-size: 2.5em;
    font-weight: bold;
    color: #69a03d;
    text-align: center;
    margin: 0.5em 0;
}

.price-description {
    color: #555;
    line-height: 1.6;
}

.price-description p {
    margin: 0.5em 0;
}

.price-description ul {
    margin: 0.8em 0;
    padding-left: 1.5em;
}

.price-description li {
    margin: 0.5em 0;
    color: #666;
}

/* Price Table */
.price-table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.price-table thead {
    background: #69a03d;
    color: white;
}

.price-table th {
    padding: 1em;
    text-align: left;
    font-weight: 600;
    font-size: 1.1em;
}

.price-table th:last-child {
    text-align: right;
}

.price-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.price-table tbody tr:hover {
    background-color: #f8f9fa;
}

.price-table td {
    padding: 1em;
    color: #555;
}

.price-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #333;
}

.price-category {
    background-color: #f0f8ec !important;
}

.price-category td {
    padding: 0.8em 1em;
    color: #333;
    font-size: 1.05em;
}

.price-category:hover {
    background-color: #f0f8ec !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .price-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .price-section h2 {
        font-size: 1.5em;
    }

    .price-amount {
        font-size: 2em;
    }

    .price-table th,
    .price-table td {
        padding: 0.8em 0.5em;
        font-size: 0.95em;
    }
}

/* Bottom spacing handled globally in base.css */

@media (max-width: 480px) {
    .price-intro p {
        font-size: 1em;
    }

    .price-card {
        padding: 1.5em;
    }

    .price-table th,
    .price-table td {
        padding: 0.6em 0.4em;
        font-size: 0.9em;
    }
}
