.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.pricing-header {
    text-align: center;
    margin: 3rem 0 4rem;
}

.pricing-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
}

.pricing-grid {
    display: grid;
    grid-template-columns: auto repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    width: 100%;
    min-width: 1024px;
}

.features-column {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 180px; /* Aligns with plan cards content */
}

.features-column .feature-row {
    height: 100px;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #1a1a1a;
}

.feature-details {
    text-align: center;
}

.plans-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;    
}

.plan-card {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
    min-width: 250px;
}

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

.popular {
    border: 2px solid #3b82f6;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.plan-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.feature-row {
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0;
}

.check {
    color: #22c55e;
    font-size: 1.5rem;
}

.cross {
    color: #ef4444;
    font-size: 1.5rem;
}

.feature-detail {
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    line-height: 1.4;
}

.contact-link {
    font-size: 1.25rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.select-plan {
    width: 100%;
    background: #3b82f6;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 2rem;
    transition: background-color 0.2s ease;
}

.select-plan:hover {
    background: #2563eb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        overflow-x: auto;
        padding: 1rem;
    }

    .pricing-grid {
        grid-template-columns: auto repeat(3, 1fr);
        min-width: 1024px;
    }

    .features-column {
        display: flex;
        flex: 0 0 200px;
    }

    .plans-column {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .pricing-header h1 {
        font-size: 2rem;
    }
}

.current-plan-text {
    text-align: center;
    color: #3b82f6;
    font-weight: 600;
    padding: 1rem;
    margin-top: 2rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
}

.terms-checkbox {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    display: none; /* Hide checkbox by default */
}

.terms-checkbox input[type="checkbox"] {
    margin-right: 5px;
    cursor: pointer;
}

.terms-checkbox label {
    cursor: pointer;
}

.terms-checkbox a {
    color: #3b82f6;
    text-decoration: none;
}

.terms-checkbox a:hover {
    text-decoration: underline;
} 