/* Global styling */

  body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #e3f2fd, #ffffff); /* Light day background */
    color: #333333; /* Dark text for readability */
    margin: 0;
    padding: 0;
    line-height: 1.5; /* Reduced line-height for better readability */
    text-align: center; /* Center all text */
}

/* Header, Section, Footer common styling */
header {
    background-color: #0d47a1; /* Even darker blue background for the header */
    color: white; /* White text for contrast */
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
  text-align: center;
    font-size: 2.5em;
    font-weight: bold;
}

/* Heading styles */
h1, h2 {
    color: white; /* Ensure the text is white in the header */
}

/* About and Service section styling */
h2 {
    font-size: 1.8em;
  text-align: center;
    margin-bottom: 15px;
    color: #1e88e5;
}

/* General list style */
ul {
    list-style-type: none;
    padding: 0;
    font-size: 1.2em;
}

li {
    margin: 10px 0;
}

/* Button styling */
a.button { /* Target the links that should act like buttons */
    display: inline-block;
    margin: 10px;
    padding: 12px 25px;
    font-size: 16px;
    background-color: #1e88e5; /* Blue background for button */
    color: white; /* White text for better contrast */
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase; /* Clean modern look */
    transition: background-color 0.3s, color 0.3s;
}

a.button:hover,
a.button:focus {
    background-color: #1565c0; /* Darker blue on hover */
    color: white; /* Keep text white when hovered */
}

/* Footer styling */
footer p {
    font-size: 1em;
    margin: 5px 0;
    color: #666666; /* Subtle gray for footer text */
}

/* Mobile and Tablet responsiveness */
@media only screen and (max-width: 600px) {
    header, section, footer {
        padding: 15px;
    }

    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 1.5em;
    }

    .button {
        padding: 10px 20px;
        font-size: 14px;
    }
}