*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 16px;
}

.title {
    text-align: center;
    font-size: 2rem;
    margin: 2rem 0;
    color: #f5f5f5;
}

.service-container-alt {
    background-color: #1e1e1e;
    margin: 0 auto;
    padding: 2rem;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
}

.service-container-text {
    font-size: 1rem;
    color: #cccccc;
}

.service-container-text strong {
    color: #ffffff;
    font-weight: 600;
}

a {
    color: #90caf9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-links {
        margin-top: 1rem;
        flex-direction: column;
    }

    .navbar-links a {
        margin: 0.5rem 0;
    }
}