body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }
        header {
/*            background: #0a1f44;*/
            color: white;
            padding: 100px 20px 40px 40px;
            text-align: center;
        }
        header h1 {
            font-size: 3rem;
            margin-bottom: 10px;
        }
        header p {
            font-size: 1.2rem;
        }
        .cta-button {
/*            background: #00c2ff;*/
            color: white;
            padding: 12px 30px;
            border: none;
            font-size: 1rem;
            border-radius: 5px;
            margin-top: 20px;
            cursor: pointer;
        }
        .section {
            padding: 40px 20px;
            text-align: center;
        }
        .section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
        }
        .feature {
            background: #f4f4f4;
            padding: 30px;
            border-radius: 8px;
            width: 400px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            cursor: pointer;
            min-height: 180px;
        }

        .features a {
            display: flex;
            text-decoration: none;
            color: inherit;
        }

        footer {
            background: #0a1f44;
            color: white;
            text-align: center;
            padding: 5px;
        }

        .background-div {
     /* Replace with your image path */
    background-size: cover; /* Scales the image to cover the div, may crop */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    width: 100vw; /* Full viewport width */
    /* height: 100vh; Full viewport height, adjust if needed */
    position: relative; /* For layering or absolute positioning of content */

}


.overlay-div {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.2); /* Black overlay with 50% transparency */
            z-index: 2; /* Places overlay above the image */
        }

        .content-div {
            position: relative;
    z-index: 3 !important;
    background-color: transparent !important;

}