   <style>
        {
            margin: 5;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: #0a2d41;
            color: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
	    position: relative;
	    display: flex;
	    flex-wrap: wrap;
        }

        /* Hero Section */
        .hero {
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-color: #154360;
	    border-radius: 20px;
            flex: 1 1 calc(33.333% - 20px);
            box-sizing: border-box;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 30px;
        }

        .cta-button {
            background-color: #4CAF50;
            color: white;
            padding: 15px 40px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
            flex: 1 1 calc(33.333% - 20px);
            box-sizing: border-box;
        }

        .cta-button:hover {
            background-color: #45a049;
        }

        /* Features Section */
        .features {
            padding: 40px 0
	}

        .feature-grid {
            display: flex;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
	    flex-wrap: wrap;
        }

        .feature-card {
            background-color: #1e374f;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s;
   	    flex: 1 1 calc(33.333% - 20px);
    	    box-sizing: border-box;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-card i {
            font-size: 3rem;
            margin-bottom: 20px;
        }
	
	.feature-card h3 {
	    font-size: 1.75rem;
	}
	
	.feature-card p {
	    font-size: 1.25rem;
	}

        /* Contact Section */
        .contact {
            padding: 20px 0;
            background-color: #1e374f;
	    border-radius: 10px;
	    text-align: center;
	    align-items: center;
	    justify-content: center;
    	    box-sizing: border-box;
	    display: flex;
	    flex: 1 1 calc(33.333% - 20px);
        }

	.contact h3 {
	    font-size: 1.5rem;
	    box-sizzing: border-box;
	    flex: 1 1 calc(33.333%);
	}
	
	.contact p {
    	    flex: 1 1 calc(33.333%);
    	    box-sizing: border-box;
	    font-size: 1.5rem;
	}

	/* Onboarding Section */
	.onboarding-process {
    	    padding: 10px 0;
    	    background-color: #1e374f;
    	    border-radius: 20px;
	    margin-bottom: 20px;
	}
	
	.onboarding-process h2 {
	    font-size: 2rem;
	    margin-bottom: 10px;
	    margin-top: 10px;
	}

	.steps-container {
	    display: flex;
	    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	    gap: 30px;
	    max-width: 1200px;
	    margin: 15 auto;
	    flex-wrap: wrap;
	}

	.step-card {
	    background-color: #29435b;
	    padding: 20px;
       	    border-radius: 8px;
   	    text-align: center;
            flex: 1 1 calc(33.333% - 20px); 
            box-sizing: border-box;
	    transition: transform 0.3s;
	}

	.step-card:hover {
	    transform: translateY(-10px);
	}

	.step-number {
	    font-size: 2rem;
    	    color: #4CAF50;
   	    margin-bottom: 10px;
	}

	/* Header section */

        .header {
            background-color: #154360;
            padding: 10px 0;
            text-align: center;
	    margin-bottom: 20px;
	    border-radius: 20px;
	    display: flex;
	    align-items: center;
	    justify-content: center;

        }

        .header h1 {
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
	    margin-top: 10px;
    }
</style>

 
