﻿.header {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
 /*   background-image: url(../img/contact/headerContact.png);*/
    background-repeat: repeat-x;
    padding-bottom: 10%;
    z-index: -5;
    gap: 50px;
}

.header-h1 {
    font-size: 50px;
}

.header-h6 {
    font-size: 20px;
}

.header-p {
    color: #000;
    text-align: center;
    font-family: Switzer;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    width: 60%;
}

.header-content {
    margin-top: 120px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

/*  */


.sectionPrice {
    margin-top: 50px;
    margin-bottom: 80px;
}

.containerPrice {
    display: flex;
    padding: 20px;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;
    flex-wrap: wrap;
}

.box1 {
    width: 380px;
    height: auto;
    min-height: 488px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    align-items: center;
    gap: 15px;
    border-radius: 7.91px;
    border: 1px solid #ECECEC;
    background: #FFF;
    box-shadow: 0px 7.9px 13.8px 0px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .box1:hover {
        transform: scale(1.05);
        box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.12);
    }

.title {
    width: 100%;
    color: #000;
    text-align: center;
    font-family: 'Switzer', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.desc {
    width: 100%;
    color: #001903;
    text-align: center;
    font-family: 'Switzer', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
}

.features {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
}

.feature {
    font-size: 18px;
    padding: 10px 0;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
}



hr {
    width: 80%;
    border: 0;
    height: 1px;
    background: #ddd;
    margin: 0;
}

.icon {
    font-size: 55px;
    color: #004F63;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.box1:hover .icon {
    transform: scale(1.2);
    color: #0056b3;
}

.features .feature {
    font-size: 18px;
}

    .features .feature i {
        color: #28a745;
        margin-right: 8px;
        font-size: 20px;
    }
/* */

.info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 1220px;
    margin: 50px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .info-box:hover {
        transform: translateY(-5px);
        box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.12);
    }

    .info-box i {
        font-size: 40px;
        color: #004F63;
        margin-bottom: 15px;
    }

    .info-box p {
        font-size: 18px;
        color: #333;
        font-weight: 500;
        margin-bottom: 20px;
    }

.custom-button {
    background: #004F63;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

strong{
    font-weight:600;
}
/* */

@media (max-width: 768px) {
    .header {
        padding-bottom: 15%;
        text-align: center;
        gap: 30px;
    }

    .header-h1 {
        font-size: 32px;
    }

    .header-h6 {
        font-size: 18px;
    }

    .header-p {
        width: 90%;
        font-size: 16px;
        line-height: 24px;
    }

    .header-content {
        margin-top: 80px;
    }

    .section3 {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .container4 {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 15px;
    }

    /*.box1 {
        width: 90%;
        padding: 20px;
        gap: 10px;
    }*/

    .title {
        font-size: 22px;
    }

    .desc {
        font-size: 17px;
        line-height: 22px;
    }

    .features {
        padding-left: 10px;
    }

        .features .feature {
            font-size: 18px;
            padding: 8px 0;
        }

            .features .feature i {
                font-size: 18px;
            }

    .info-box {
        padding: 20px;
        max-width: 90%;
        margin: 30px auto;
    }

        .info-box i {
            font-size: 35px;
        }

        .info-box p {
            font-size: 16px;
        }

    .custom-button {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header {
        gap: 20px;
    }

    .header-h1 {
        font-size: 28px;
    }

    .header-h6 {
        font-size: 16px;
    }

    .header-p {
        font-size: 14px;
        line-height: 20px;
    }

    .container4 {
        padding: 10px;
    }

    .box1 {
        width: 100%;
        padding: 15px;
    }

    .title {
        font-size: 22px;
    }

    .desc {
        font-size: 17px;
    }

    .features .feature {
        font-size: 18px;
    }

        .features .feature i {
            font-size: 16px;
        }

    .custom-button {
        font-size: 13px;
        padding: 10px;
    }
}
