body {
            font-family: Roboto, sans-serif;
            background-color: #eef2f7;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            color: #333;
            text-align: center;
            background-image: url('images/Automation.jpg');
            background-size: cover;
            background-position: center;
        }
        .overlay {
            background: rgba(255, 255, 255, 0.8);
            padding: 20px;
            border-radius: 16px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            width: 100%;
        }
        h1 {
            font-size: 3em;
            margin-bottom: 0.5em;
            font-weight: 300;
        }
        p {
            font-size: 1.4em;
            margin: 0.5em 0;
            font-weight: 300;
        }
        .cta {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #007bff;
            color: white;
            border-radius: 8px;
            text-decoration: none;
            font-size: 1.2em;
            font-weight: 400;
        }
        .cta:hover {
            background-color: #0056b3;
        }