.plan-details {
    padding: 120px 20px 40px;
    min-height: 100vh;
    background: var(--light-bg);
}

.plan-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    padding: 40px;
}

.plan-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.plan-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.plan-price {
    font-size: 3rem;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 2rem;
    font-weight: 600;
}

.amount {
    font-weight: 800;
}

.period {
    font-size: 1.2rem;
    color: var(--text-color);
}

.plan-features {
    margin-bottom: 40px;
}

.plan-features h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.features-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.payment-methods {
    margin-bottom: 40px;
    text-align: center;
}

.payment-methods h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.payment-method img {
    height: 50px;
    width: auto;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.payment-method:hover img {
    filter: grayscale(0);
    transform: translateY(-5px);
}

.payment-method span {
    font-size: 0.9rem;
    color: var(--text-color);
}

.contact-options {
    text-align: center;
    margin-bottom: 40px;
}

.contact-options h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-button.whatsapp {
    background: #25D366;
    color: white;
}

.contact-button.email {
    background: var(--primary-color);
    color: white;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(0,0,0,0.1);
}

.info-box {
    text-align: center;
    padding: 20px;
}

.info-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-box h3 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-box p {
    color: var(--text-color);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .plan-container {
        padding: 20px;
    }
    
    .plan-title {
        font-size: 2rem;
    }
    
    .plan-price {
        font-size: 2.5rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-button {
        width: 100%;
        justify-content: center;
    }
}
