/* Trust Badge Styles */
.trust-badge {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
}

.trust-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Simple Pricing Section */
.simple-pricing {
    padding: 80px 0;
    background-color: var(--light-color);
}

.simple-pricing h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
    font-size: 2.5rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-card h3 {
    color: var(--dark-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.pricing-card .price {
    margin: 20px 0;
}

.pricing-card .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-card .period {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.pricing-card .contact {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.pricing-card p {
    color: var(--text-color);
    margin: 10px 0;
    font-size: 1.1rem;
}

.pricing-card .btn {
    margin-top: 30px;
    width: 100%;
    padding: 12px;
    transition: all 0.3s ease;
}

.pricing-card .btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
}

.pricing-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    background-color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .simple-pricing h2 {
        font-size: 2rem;
    }
}

/* Star Rating Styles */
.star-rating {
    color: #ffc107; /* Golden yellow color for stars */
    font-size: 1.2rem;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.star-rating i {
    margin: 0 1px;
}

/* Alert Message Styles */
.alert-message {
    background-color: rgba(255, 255, 255, 0.95);
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.alert-message span {
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
} 