/* price page styles - Extracted from inline style */

/* Price Page Specific Styles */
.price-notice-box {
    background: var(--white);
    border: 1px solid var(--primary-light);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.notice-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notice-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.notice-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.notice-content ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
}

.notice-content ul li i {
    color: var(--primary-color);
}

/* Price Table */
.price-table-wrapper {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    overflow: hidden;
}

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

.price-table th,
.price-table td {
    padding: 20px 25px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
}

.price-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.price-table th:first-child {
    text-align: left;
}

.price-table td:first-child {
    text-align: left;
}

.price-table tr.highlight {
    background: rgba(139, 92, 246, 0.05);
}

.price-table .badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: 8px;
    vertical-align: middle;
}

.price-table .badge.discount {
    background: #10B981;
}

/* Option Cards */
.option-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.1);
    border-color: var(--primary-light);
}

.option-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.option-card:hover .option-icon {
    background: var(--gradient-main);
    color: white;
}

.option-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.option-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.option-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: "Playfair Display", serif;
}

/* Insurance Cards */
.insurance-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.insurance-header {
    background: var(--bg-light);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.insurance-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.insurance-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.insurance-body {
    padding: 30px;
}

.insurance-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.insurance-body ul li {
    padding: 10px 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.95rem;
}

.insurance-body ul li:last-child {
    border-bottom: none;
}

.insurance-notice {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.insurance-notice.success {
    background: #ECFDF5;
    color: #047857;
}

/* CTA Box */
.cta-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .price-notice-box {
        flex-direction: column;
        text-align: center;
    }

    .notice-content ul {
        justify-content: center;
    }

    .price-table th,
    .price-table td {
        padding: 15px;
        font-size: 0.9rem;
    }

    .cta-box {
        padding: 50px 30px;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .price-table-wrapper {
        overflow-x: auto;
    }

    .price-table {
        min-width: 500px;
    }
}