
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Arial', sans-serif;
        }
        body {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            font-family: Arial, sans-serif;
        }
/* 
        .contact-container {
            text-align: center;
            padding: 30px;
            background-color: #f4f4f4;
            margin: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        } */
        .contact-container {
            text-align: center;
            padding: 30px;
            background: rgba(11, 99, 170, 0.1);
            background-color: #0083b0;
            /* background-color: #f4f4f4; */
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            width: 100%;
            max-width: 800px;
            text-align: center;
            box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #ffe100;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }
h1{
    color:gainsboro;
}
        p {
            margin-bottom: 20px;
            font-size: 1.2rem;
            color: #ffffff;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }
#message1{
    color:gray;
}
        .services {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 10px;
            margin: 20px 0;
            color: #ffffff;
            text-align: left;
        }

        .services h2 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: #ffe100;
        }

        .services ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .services ul li {
            margin: 5px 0;
            font-size: 1.1rem;
        }

        .contact-email {
            font-size: 1.5rem;
            margin-top: 20px;
            background: #ffe100;
            color: #0083b0;
            padding: 15px;
            border-radius: 10px;
            font-weight: bold;
        }

        .contact-email:hover {
            background: #ffcc00;
        }

        .cta {
            margin-top: 30px;
            font-size: 1.2rem;
            color: #ffffff;
        }

        .cta a {
            color: #ffe100;
            text-decoration: underline;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            p {
                font-size: 1rem;
            }

            .contact-email {
                font-size: 1.2rem;
            }
        }
