/* Basic Reset and typography */
*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
    line-height: 1.5;
    color: #202c30;
    background-color: #f8f5ef;
}
a {
    color: #0077cc;
    text-decoration: none;
}
a:hover,
a:focus {
    text-decoration: underline;
    outline: none;
}
header {
    color: #eee;
    padding: 1rem 1.5rem 0em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo img {
    height: 100px;
    width: auto;
}
main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}
section {
    margin-bottom: 3rem;
}
h1,
h2 {
    margin-top: 0;
}
#hero {
    background: #202c30;
    color: #fff;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.service-item {
    padding: 2rem 2rem 1.2rem;
    text-align: center;
    font-size: 1.1rem;
}
.service-icon {
    display: block;
    margin: 0 auto 0.75rem;
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.btn-primary {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #d6a77a;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn-primary:hover,
.btn-primary:focus {
    background: #b67f55;
    outline: none;
}
ul {
    padding-left: 1.25rem;
}
#cta,
#cta-2 {
    background: #f3ebe4;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 3rem;
}
#cta h2,
#cta-2 h2 {
    margin-top: 0;
    font-size: 1.75rem;
}
#cta p,
#cta-2 p {
    margin: 1rem 0 1.5rem;
    font-size: 1.1rem;
}
footer {
    background-color: #202c30;
    border-radius: 8px 8px 0 0;
    color: #eee;
    padding: 0.5rem 1rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.875rem;
}
footer a,
address a {
    color: #eee;
    text-decoration: underline;
}
section#contact {
    margin: 1rem;
}
