/* Global Styles */
body {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
    color: #444;
}

.container {
    max-width: 1000px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.header-image {
    width: 100%;
    height: auto;
}

h1, h2, h3 {
    margin: 0 0 10px;
}

p {
    margin: 0 0 20px;
    line-height: 1.6;
}

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.service {
    flex: 1;
    min-width: 300px;
    text-align: justify;
    padding: 10px;
    box-sizing: border-box;
}

.service p {
    hyphens: auto;
    line-height: 1.3;
    word-spacing: 2px;
}

footer {
    border-top: 1px solid #e1e1e1;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.contact {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 300px;
}

.contact address, .contact div, .contact a {
    margin: 0;
}

.contact span {
    font-size: 0.9em;
    display: flex;
    align-items: center;
}

.contact a {
    color: #444;
    text-decoration: none;
}

.material-symbols-outlined {
    font-size: 32px !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    main {
        flex-direction: column;
        align-items: center;
    }

    .service {
        width: 100%;
    }
}
