/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

h1, h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0056b3; /* A shade of blue */
}

p {
    margin-bottom: 1rem;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header Styles */
header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1516248696288-7d9e8a8f1b7c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80') no-repeat center center/cover;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

header p {
    font-size: 1.2rem;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
}

/* Main Content Styles */
main {
    padding: 40px 0;
}

section {
    padding: 40px 0;
    border-bottom: 1px solid #ddd;
}

section:last-child {
    border-bottom: none;
}

#about {
    background-color: #ffffff;
}

#location {
    background-color: #e9ecef;
}

.map-placeholder {
    background-color: #ccc;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
    border-radius: 5px;
    color: #555;
}

#contact {
    background-color: #ffffff;
}

.contact-form-placeholder {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
    border-radius: 5px;
    color: #555;
}

/* Footer Styles */
footer {
    background: #333;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    header {
        padding: 80px 0;
    }
}
