body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.hidden {
    display: none;
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cover {
    height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cover-content {
    position: relative;
    z-index: 1;
}

.cover h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.cover h3 {
    font-size: 1.5em;
    font-weight: normal;
}

.section-1 {
    min-height: 160px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    position: relative;
    z-index: 1;
}

.section-2, .section-3 {
    background-color: white;
    padding: 40px 20px;
    position: relative;
    z-index: 0;
}

.section-3 {
    background-color: #f5f5f5;
}

.section-4-wrapper {
    position: relative;
}

.section-4-top-divider,
.section-4-bottom-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.section-4-top-divider {
    top: 0;
}

.section-4-bottom-divider {
    bottom: 0;
}

.section-4-top-divider svg,
.section-4-bottom-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.section-4 {
    height: 650px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    z-index: 0;
    padding: 100px 0;
}

.section-5 {
    background-color: white;
    min-height: 350px;
    padding: 60px 20px;
}

.section-6 {
    color: white;
    padding: 60px 20px;
}

.section-6-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.section-6-left, .section-6-right {
    width: 48%;
}

.section-6 h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    text-align: center;
}

.section-6 p {
    font-size: 1.1em;
    line-height: 1.6;
}

.google-maps {
    width: 100%;
    height: 350px;
}

.content-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.text-18 {
    font-size: 18px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 20px;
    width: calc(25% - 20px);
    min-width: 250px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.card h3 {
    margin-top: 0;
}

.section-2-desc {
    margin-top: 40px;
}

.section-3 h2 {
    font-size: 35px;
    margin-bottom: 20px;
}

.section-3 p {
    font-size: 16px;
    font-weight: bold;
}

.section-4-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    padding: 0 10px;
}

.section-4-left, .section-4-right {
    width: 48%;
}

.section-4 h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.section-4 h3 {
    font-size: 1.5em;
    margin-bottom: 1em;
}

.section-4 p {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: justify;
}

.section-5 h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.section-5 p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 2em;
}

.pricing-placeholder {
    font-style: italic;
    color: #888;
}
.mobilecover {
    display: none;
    height: 650px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        width: 90%;
        min-width: unset;
        margin-bottom: 20px;
    }
    
    .section-4-content, .section-6-content {
        flex-direction: column;
    }
    
    .section-4-left, .section-4-right, .section-6-left, .section-6-right {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .section-4 p {
        text-align: left;
    }

    .section-4-top-divider svg,
    .section-4-bottom-divider svg {
        height: 50px;
    }

    .section-4 {
        padding: 50px 0;
    }

    .parallax-bg {
        background-attachment: scroll;
        background-size: 400% auto;
    }
    
    .cover, .section-4 {
        background-position: center center;
        
    }
    
    .cover {
        display: none;
    }
    
    .mobilecover {
        display: flex;
    }
}