/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* Header Section */
header {
    background-color: #000000;
    color: white;
    padding: 2rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.logo {
    width: 150px;
    height: auto;
    margin-right: 2rem;
}

.header-text h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.header-text p {
    font-size: 1.2rem;
    font-weight: 400;
}

/* Section Styles */
section {
    padding: 3rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    background-color: white;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

#about {
    background-color: #f4f4f4;
}

h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #000;
}

p, ul {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

#services ul {
    list-style-type: circle;
}

/* Contact Button */
.contact-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #000;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
    font-weight: 600;
}

.contact-button:hover {
    background-color: #333;
}

/* Footer Styles */
footer {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}