body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

.contact-btn {
    position: fixed;
    display: flex;
    bottom: 20px;
    right: 20px;
    color: white;
    background: #005A9C;
    height: 60px;
    width: 11rem;
    border-radius: 60px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: cubic-bezier(0.5, 0, 0.5, 1) all 0.5s;
    overflow: hidden;
}
.contact-btn.collapsed:not(:hover) {
    width: 60px;
}
.contact-btn .icon-container {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    width: fit-content;
    height: fit-content;
    background: #005A9C;
    color: #FFC107;
    height: 60px;
    width: 60px;
    border-radius: 60px;
    box-shadow: -5px 0px 5px #005A9C;
}
.contact-btn .sliding-content {
    position: absolute;
    font-size: 18px;
    left: 21px;
    bottom: 14px;
    z-index: -1;
}

header {
    background: #005A9C;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #FFC107 3px solid;
}
header h1 {
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    font-size: 24px;
}
header p {
    text-align: center;
    font-size: 18px;
}

#showcase {
    position: relative;
    min-height: 400px;
    background-size: cover;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 4px #000000;
}
#showcase .background {
    position: absolute;
    background: url("./assets/pompedicalore.webp");
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    z-index: -1;
    opacity: 0.5;
    box-shadow: inset 0 0 10px #000000;
}
#showcase .filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #005A9C;
    opacity: 0.5;
    z-index: -1;
}
#showcase .shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 33%;
    background: linear-gradient(to top, #f4f4f4, rgba(0,0,0,0));
}
#showcase h2 {
    font-size: 40px;
}

#main {
    padding: 20px 0;
}
.section {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.section h2 {
    color: #005A9C;
    border-bottom: 2px solid #FFC107;
    padding-bottom: 10px;
}
.service-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.service-list li {
    background: #f9f9f9;
    padding: 15px;
    border-left: 5px solid #005A9C;
    transition: all 0.3s ease;
    user-select: all;
    -moz-user-select: all;
}
.service-list li:hover {
    background: #e9e9e9;
    border-left: 5px solid #FFC107;
}
#contact-info {
    background: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}
#contact-info p {
    margin: 5px 0;
}
#contact-info a {
    color: currentColor;
    text-decoration: none;
}

footer {
    background: #005A9C;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}
