/* Plan Details Section Styling */

.features-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.plan-details-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.plan-detail-block {
    background: white;
    border-radius: 12px;
    padding: 60px;
    margin-bottom: 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.plan-detail-block:last-child {
    margin-bottom: 0;
}

.plan-detail-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.2;
}

.plan-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.3;
}

.plan-intro {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 900px;
}

.feature-detail {
    margin-bottom: 40px;
}

.feature-detail:last-child {
    margin-bottom: 0;
}

.feature-detail h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-detail p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0;
}

.feature-detail ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-detail ul li {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 0;
}

.feature-detail ul li:last-child {
    margin-bottom: 0;
}

.feature-detail ul li strong {
    color: #2d3748;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .plan-details-section {
        padding: 40px 0;
    }

    .plan-detail-block {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .plan-detail-block h2 {
        font-size: 1.875rem;
    }

    .plan-intro {
        font-size: 1.125rem;
        margin-bottom: 30px;
    }

    .feature-detail h3 {
        font-size: 1.5rem;
    }

    .feature-detail p,
    .feature-detail ul li {
        font-size: 1rem;
    }
}



/* Color-coded Plan Detail Blocks */

/* Solo Plan - Orange */
#solo-details {
    border: 3px solid #f97316;
    background: #fff7ed; /* Subtle orange background */
}

#solo-details h2 {
    color: #f97316;
}

#solo-details .plan-subtitle {
    color: #ea580c;
}

/* Alto Plan - Blue */
#alto-details {
    border: 3px solid #3b82f6;
    background: #eff6ff; /* Subtle blue background */
}

#alto-details h2 {
    color: #3b82f6;
}

#alto-details .plan-subtitle {
    color: #2563eb;
}

/* Nimbus Plan - Green */
#nimbus-details {
    border: 3px solid #22c55e;
    background: #f0fdf4; /* Subtle green background */
}

#nimbus-details h2 {
    color: #22c55e;
}

#nimbus-details .plan-subtitle {
    color: #16a34a;
}

