body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f3f4f6;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    background: #333;
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

header .logo h1 {
    margin: 0 20px;
}

header ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

header li {
    margin: 0 15px;
}

header a {
    color: white;
    text-decoration: none;
    padding: 5px 10px; /* Added padding for better clickable area */
    border-radius: 5px; /* To round corners on hover */
    transition: background 0.3s, color 0.3s;
}

header a:hover {
    color: #333;
    background: #FFD700;
}

.hero {
    height: 400px;
    background: linear-gradient(to bottom, #1E90FF, #00BFFF);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px; /* For a bit of padding on mobile */
}

.cta-button {
    background: #FFD700;
    padding: 10px 20px;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 5px; /* Rounded edges */
    text-decoration: none; /* Remove any underlines */
    font-weight: bold; /* Make the text bold */
    font-size: 1rem; /* Set font size */
    color: #333; /* Set font color */
    display: inline-block; /* Allows padding and other styles to be applied */
    font-family: 'Arial', sans-serif; /* Use Arial as the font */
}

.cta-button:hover {
    background: #FFA500;
    text-decoration: none; /* Ensure no underlines appear on hover as well */
}


.service-card {
    background: #1E90FF;
    color: white;
    padding: 20px;
    margin: 20px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Shadow for depth */
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

footer {
    background: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

/* Mobile Responsiveness */
@media only screen and (max-width: 768px) {
    header ul {
        flex-direction: column;
        align-items: center;
    }
    
    header li {
        margin: 5px 0;
    }

    .service-card {
        margin: 20px 10px; /* Adjusted for better spacing on mobile */
    }
}

/* Add more media queries or styles as per your design and brand preferences. */
