#budget {
    display: none;
}

.banner {
    position: relative;
    background-image: url('/assets/images/carpe-diem/gallery/outer/DJI_20250603193714_0273_D.webp');
    background-size: cover;
    background-position: bottom center;
    padding: 140px 0;
    color: #ffffff;
    text-align: center;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
}


.banner h1 {
    font-size: 2em;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.banner p {
    font-size: 1em;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.help-section {
    padding: 50px 0;
}


.help-section .icon-card {
    text-align: center;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
    min-height: 250px;
    box-sizing: border-box;
}

.help-section .icon-card:hover {
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
    /* darker shadow on hover */
    transform: translateY(-3px);
    /* move up a bit on hover */
}

.help-section .icon-card img {
    width: 48px;
    height: 48px;
}

.help-section h2 {
    font-size: 1.5em !important;
    margin-bottom: 40px;
}

.help-section .icon-card h3 {
    font-size: 1.1em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.help-section .icon-card p {
    margin: 0;
    max-width: 100%;
}


/* Contact */
.contact {
    background: url('/assets/images/carpe-diem/carpe-diem-contact.webp');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #333;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact .h2 {
    font-size: 1.5em;
    margin-top: 20px;
}

.primary.text-center {
    font-size: 2em;
    margin-bottom: 20px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    border: none;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 10px;
    outline: none;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}


/* Mobile devices*/
@media only screen and (max-width: 600px) {
    .banner h1 {
        font-size: 1.5em;
    }


    .banner p {
        margin-bottom: 50px;
    }

    .contact .h2 {
        font-size: 1.4em;
        margin-bottom: 100px !important;
        font-style: bold !important;
        color: #ffffff !important;
    }
}