         .m-container {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 40px 20px;
            background-color: #8999b1;
            color: #333;
            line-height: 1.6;
        }

        .Container{
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .header {
            margin-bottom: 50px;
        }

        .header h1 {
            font-size: 2.8em;
            color: #0d2952;
            margin-bottom: 10px;
        }

        .header p {
            font-size: 1.2em;
            color: #354b64;
        }

        .feature{
            display: flex;
            flex-wrap: wrap; 
            justify-content: center;
            gap: 30px; 
        }

        .card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
            
            flex: 0 1 calc(33.333% - 20px); 
            min-width: 280px; 
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .icon {
            font-size: 3em;
            color: #457b9d; /* Primary accent color */
            margin-bottom: 15px;
            display: block;
        }

        .card h3 {
            font-size: 1.4em;
            color: #1d3557;
            margin-top: 0;
            margin-bottom: 10px;
        }

        .card p {
            font-size: 1em;
            color: #555;
        }

        .card a {
            display: inline-block;
            margin-top: 15px;
            color: #e63946; 
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px solid transparent;
            transition: border-bottom 0.3s;
        }

    
        .card a:hover {
            border-bottom: 1px solid #e63946;
        }

        @media (max-width: 992px) {
            .card {
                flex: 0 1 calc(50% - 20px);
            }
        }
        
        @media (max-width: 600px) {
            .card {
                flex: 0 1 100%;
            }
        }
             footer{
        text-align: center;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        margin: 0;
        background-color: rgb(65, 123, 131);
       }
         footer a{
       text-decoration: none;
       color: antiquewhite;
       }
