/* General Styling */
body {
    font-family: sans-serif;
    margin: 0;
    background-color: #FFE6C7; /* Light background */
    color: #454545; /* Dark text for contrast */
}

header {
    background-color: #FF6000; /* Bright orange */
    color: white;
    text-align: center;
    padding: 1em 0;
}

section {
    padding: 20px;
}

/* Typography */
h1 {
    font-size: 2.5em; 
    margin-bottom: 0.2em;
}

h2 {
    color: #FF6000; /* Orange for headings */
    font-size: 2em;
}

h3 {
    color: #454545;
    font-size: 1.5em;
}

p {
    line-height: 1.6;
}

/* Links and Buttons */
a {
    color: #FF6000; 
    text-decoration: none;
}

.button {
    display: inline-block;
    background-color: #FF6000;
    color: white;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #FFA559; /* Slightly darker orange border */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.button:hover {
    background-color: #FFA559;
}

/* Hero Section */
.hero {
    text-align: center;
}

/* Image Container in Hero Section */
.img-container {
    display: flex;
    justify-content: center; /* Center the image horizontally */
    width: 100%; 
    overflow: hidden; /* Hide any part of the image that overflows */
}

.img-container img {
    max-width: 100%; /* Make the image responsive */
    height: auto;  /* Maintain aspect ratio */
    border: 5px solid #FF6000; 
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2); 
    margin-bottom: 20px;
}


/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive columns */
    gap: 20px;
}

.service-grid div {
    border: 2px solid #FFA559;
    padding: 15px;
    border-radius: 5px;
}

/* Lists */
ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #454545;
    color: white;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    .service-grid {
        grid-template-columns: 1fr; 
    }
}