

        :root {
           --primary: #2564BF;
            --secondary: #e67e22;
            --light: #f8f9fa;
            --dark: #2c3e50;
            --success: #28a745;
        } 
        .container {
            margin: 0 auto;
            padding: 0 0px;
            width: 100%;
        }
        
        header {
            background: linear-gradient(135deg, var(--primary), #1a5cb0);
            color: white;
            padding: 2rem 0;
            text-align: center;
            width: 100%;
        }
        
        header h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        
        header p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .intro {
            background-color: white;
            padding: 0.5rem 0;
            text-align: center;
            width: 100%;
        }
        
        .intro h2 {
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .intro p {
            max-width: 800px;
            margin: 0 auto 1.5rem;
        }
        
        .features {
            padding: 0.5rem 0;
            width: 100%;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--primary);
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--secondary);
            margin: 10px auto;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-header {
            background-color: var(--primary);
            color: white;
            padding: 1.2rem;
        }
        
        .feature-body {
            padding: 1.5rem;
        }
        
        .feature-body ul {
            padding-left: 1.2rem;
            margin-top: 0.5rem;
        }
        
        .safety {
            background-color: var(--light);
            padding: 0.5rem 0;
            width: 100%;
        }
        
        .safety-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .safety-item {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: flex-start;
        }
        
        .safety-icon {
            background-color: var(--success);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .benefits {
            padding: 0.5rem 0;
            background: linear-gradient(135deg, var(--primary), #1a5cb0);
            color: white;
            width: 100%;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .benefit-item {
            text-align: center;
            padding: 1.5rem;
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        
        .benefit-value {
            font-size: 2rem;
            font-weight: bold;
            margin: 0.5rem 0;
            color: var(--secondary);
        }
        
        footer {
            background-color: var(--dark);
            color: white;
            padding: 2rem 0;
            text-align: center;
            width: 100%;
        }
        
        .contact-info {
            margin-top: 1rem;
        }
        
        .cta-section {
            background-color: white;
            padding: 0.5rem 0;
            text-align: center;
            width: 100%;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 1rem;
            transition: background-color 0.3s;
        }
        
        .cta-button:hover {
            background-color: #1a5cb0;
        }
        
        @media (max-width: 768px) {
            header h1 {
                font-size: 2rem;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
            }
            
            .safety-item {
                flex-direction: column;
                text-align: center;
            }
            
            .safety-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }
    