/* General Styling */
body {
    font-family: sans-serif;
    margin: 0;
    background-color: #EEEEEE; /* Lightest gray for background */
    color: #06113C; /* Dark blue for text */
}

header {
    background-color: #FF8C32; /* Orange for header */
    color: white; /* White text in header */
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

h2 {
    color: #FF8C32; /* Orange for headings */
    font-size: 2em;
}

h3 {
    color: #06113C; /* Dark blue for subheadings */
    font-size: 1.5em;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
}

a {
    color: #FF8C32; /* Orange for links */
}

/* Button Styling */
.call-button {
    display: inline-block;
    background-color: #06113C; /* Dark blue for button */
    color: white; /* White text on button */
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: 2px solid #FF8C32; /* Orange border on button */
}

.call-button:hover {
    background-color: #FF8C32; /* Orange background on hover */
    color: white; /* White text on hover */
    cursor: pointer;
}

/* Image Styling */
.hero {
    text-align: center;
}

.hero img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%; 
    height: auto;
    border: 5px solid #FF8C32; /* Orange border on image */
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

/* Section Specific Styling */
.services {
    padding: 20px;
}

.services ul {
    list-style: none;
    padding: 0;
}

.why-us {
    background-color: #DDDDDD; /* Slightly darker gray for section background */
    padding: 20px;
}

.cta {
    text-align: center;
    padding: 20px;
}

/* Responsive Design (Mobile-Friendly) */
@media (max-width: 768px) { 
    h1 {
        font-size: 1.8em; 
    }

    h2 {
        font-size: 1.4em; 
    }

    .call-button {
        padding: 10px 15px; 
        font-size: 1.2em;  /* Increased font size for the phone number on mobile */
    }

    .hero img {
        width: 90%; 
        height: auto;
    }

    .services ul li, 
    .why-us ul li {
        font-size: 0.9em; 
    }
}