/* General Styling */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #1A3636; 
}

h1 { 
    color: #1A3636; 
    font-size: 2.5em; 
}

h2 {
    color: #40534C; 
    font-size: 2em;
}

h3 {
    color: #677D6A;
    font-size: 1.5em; 
}

/* Header Styling */
header {
    background-color: #D6BD98; 
    padding: 20px;
    text-align: center;
}

.call-button {
    display: inline-block;
    background-color: #40534C; 
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.call-button:hover {
    background-color: #677D6A; 
}

/* Hero Section Styling */
.hero {
    text-align: center;
    padding: 20px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border: 5px solid #677D6A; 
    border-radius: 10px; 
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); 
}

/* Services Section Styling */
.services {
    padding: 20px;
}

.services ul {
    list-style: none; 
    padding: 0;
}

/* Why Us Section Styling */
.why-us {
    background-color: #f9f9f9;
    padding: 20px;
}

/* Contact Section Styling */
.contact {
    text-align: center;
    padding: 20px;
}

/* Footer Styling */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}