body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #141414;
            color: white;
        }
        h1, h2 {
            font-family: 'Montserrat', sans-serif;
        }
        header {
            background: url('https://hiverp.eu/assets/thehive-header-www.jpg') center/cover no-repeat;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
            background-size: cover;
            transition: background-position 0.5s ease-in-out;
        }
        header .logo {
            position: absolute;
            top: 20px; /* Adjust logo position from the top */
            left: 50%;
            transform: translateX(-50%);
            width: 150px; /* Adjust the logo size */
        }
        header h1 {
            font-size: 4rem;
            margin: 0;
            z-index: 1; /* Ensure the text is above the background */
        }

        section {
            padding: 50px 20px;
            text-align: center;
        }
        .server-info, .features {
            background: #222;
            margin: 30px 0;
            padding: 30px 20px;
            border-radius: 10px;
        }
        .features {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .feature-card {
            background: #333;
            padding: 20px;
            border-radius: 10px;
            width: 30%;
        }
        footer {
            background-color: #111;
            padding: 20px;
            text-align: center;
            font-size: 0.8rem;
        }
        footer a {
            color: #58a6ff;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        .cta-btn {
            background-color: #ff0000;
            color: white;
            padding: 15px 25px;
            border: none;
            border-radius: 5px;
            font-size: 1.2rem;
            cursor: pointer;
        }
        .cta-btn:hover {
            background-color: #cc0000;
        }
        @media (max-width: 768px) {
            .feature-card {
                width: 100%;
            }
        }
    a {
text-decoration: none;
color: #FFF;
}