.container {
            max-width: 950px;
            margin: 0 auto;
}
        .intro {
            padding: 40px 30px;
            text-align: center;
        }
        
        .intro h1 {
            color: #1e3a5f;
            font-size: 2em;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .intro p {
            font-size: 1.1em;
            color: #555;
            line-height: 1.7;
        }
        
        .email-link {
            color: #1e3a5f;
            font-weight: bold;
            text-decoration: none;
        }
        
        .provider-table {
            margin: 10px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .provider-header {
            background:linear-gradient(to right, #45B74E 0%, #0E0F39 100%);
            color: #fff;
            padding: 15px 20px;
            font-size: 1.5em;
            font-weight: bold;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
  
        .provider-icon {
            width: 28px;
            height: 28px;
            display: inline-block;
        }
        .provider-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-top: 2px solid #e5e7eb;
			background: white;
        }
        
        .column {
            padding: 25px;
            border-right: 1px solid #e5e7eb;
        }
        
        .column:last-child {
            border-right: none;
        }
        
        .column h3 {
            color: #1e3a5f;
            font-size: 1.4em;
            margin-bottom: 15px;
			font-weight: 800;
            font-style: italic;
        }
        .column h3 .icon {
            font-style: normal;
            font-size: 1.4em;
        }
        .column ul {
            list-style: none;
            padding: 0;
        }
        
        .column li {
            padding: 8px 0;
            padding-left: 20px;
            position: relative;
            color: #555;
            line-height: 1.6;
        }
        
        .column li:before {
            content: "−";
            position: absolute;
            left: 0;
            color: #4ade80;
            font-weight: bold;
        }
        
        .column strong {
            color: #1e3a5f;
        }
        
        @media (max-width: 768px) {
            .provider-content {
                grid-template-columns: 1fr;
            }
            
            .column {
                border-right: none;
                border-bottom: 1px solid #e5e7eb;
            }
            
            .column:last-child {
                border-bottom: none;
            }
            
            .provider-table {
                margin: 15px;
            }
            
            .intro {
                padding: 30px 20px;
            }
            
            .intro h1 {
                font-size: 1.5em;
            }
        }