body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #d3d3d3;
    color: #333;
    text-align: center;
}

.navbar {
    background-color: #222;
    padding: 15px 0;
    text-align: center;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.navbar li {
    display: inline;
    margin: 0 15px;
}

.navbar a {
    color: #f4f4f4;
    text-decoration: none;
    font-size: 1.2em;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #444, #222);
    color: #f4f4f4;
}

.logo {
    max-width: 770px;
    width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

.hero-text {
    font-size: 1.5em;
    color: #f4f4f4;
    max-width: 800px;
    margin: auto;
}

.service-description {
    font-size: 1.5em;
    color: #222;
    max-width: 800px;
    margin: 40px auto 30px;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background: #f04e30;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s ease-in-out;
}

.cta-button:hover {
    background: #c03e24;
}

.service-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 50px 20px;
    margin-top: 20px;
    align-items: stretch;
    gap: 20px;
}

.service-box {
    background: #292929;
    padding: 20px;
    margin: 15px auto;
    border-radius: 10px;
    text-align: center;
    width: 30%;
    max-width: 350px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #f4f4f4; /* Change text color to a bright white */
}

.service-box h2 {
    color: #ffffff; /* Ensures the headings are bright and readable */
    font-weight: bold;
}

.service-box p {
    color: #e0e0e0; /* Light gray for better contrast */
}

.footer {
    text-align: center;
    padding: 20px;
    padding-bottom: 40px;
    background-color: #222;
    color: #ccc;
    margin-top: 50px;
}

.footer p a {
    font-size: 1.2em;
    font-weight: bold;
    color: #0073e6; /* Darker blue for better contrast */
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer p a:hover {
    color: #005bb5; /* Changes to orange on hover */
}

@media (max-width: 768px) {
    .logo {
        max-width: 400px;
    }
    .service-container {
        flex-direction: column;
        align-items: center;
    }
    .service-box {
        width: 90%;
    }
}

@media (max-width: 400px) {
    .service-container {
        flex-direction: column;
        align-items: center;
    }
    .service-box {
        width: 90%;
        max-width: 350px;
        margin: 10px auto;
    }
    .logo {
        max-width: 300px;
    }
}
