.smtp-pricing {
            padding: 80px 0;
            background: #f8f9fa;
            font-family: 'DM Sans', sans-serif;
        }
        
        .smtp-container {
            width: 95%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .smtp-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .smtp-subtitle {
            font-weight: 600;
            letter-spacing: 1px;
            color: #6747c7;
            margin-bottom: 15px;
        }
        
        .smtp-title {
            font-weight: 700;
            font-size: 2.5rem;
            color: #0f172a;
            line-height: 1.3;
        }
        
        .smtp-plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .smtp-plan-card {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid #e2e8f0;
            position: relative;
        }
        
        .smtp-plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .smtp-card-header {
            padding: 25px 20px;
            text-align: center;
            background: linear-gradient(135deg, #6747c7, #8565d3);
            color: white;
        }
        
        .smtp-plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 0 10px 0;
            color:#fff;
        }
        
        .smtp-plan-price {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0;
        }
        
        .smtp-price-period {
            font-size: 1rem;
            font-weight: 500;
            opacity: 0.9;
        }
        
        .smtp-card-specs {
            padding: 25px 20px;
            flex-grow: 1;
        }
        
        .smtp-spec-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .smtp-spec-row:last-child {
            border-bottom: none;
        }
        
        .smtp-spec-label {
            color: #64748b;
            font-weight: 500;
        }
        
        .smtp-spec-value {
            font-weight: 600;
            color: #0f172a;
        }
        
        .smtp-spec-highlight {
            color: #f97316;
        }
        
        .smtp-card-features {
            padding: 20px;
            background-color: #f8fafc;
            border-top: 1px solid #e2e8f0;
        }
        
        .smtp-features-title {
            color: #64748b;
            margin-bottom: 15px;
            font-size: 1rem;
            font-weight: 600;
        }
        
        .smtp-feature-list {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }
        
        .smtp-feature-item {
            padding: 8px 0;
            display: flex;
            align-items: flex-start;
        }
        
        .smtp-feature-icon {
            color: #3b82f6;
            margin-right: 12px;
            margin-top: 4px;
            font-size: 0.9rem;
        }
        
        .smtp-card-footer {
            padding: 0 20px 25px;
            text-align: center;
        }
        
        .smtp-buy-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 16px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    margin-top: 24px;
}
        
        .smtp-buy-btn:hover {
            background: linear-gradient(135deg, #6747c7, #6747c7);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);
            color:#fff;
        }
        
        .smtp-disclaimer {
            text-align: center;
            color: #64748b;
            margin-top: 30px;
            font-size: 0.95rem;
        }
        
        .smtp-disclaimer a {
            color: #6747c7;
            text-decoration: none;
            font-weight: 500;
        }
        
        .smtp-disclaimer a:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .smtp-plans-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .smtp-title {
                font-size: 2rem;
            }
        }