/* Custom styles for the website */

/* Header and Hero spacing */
.header {
    margin-bottom: 30px; /* Aumenta lo spazio sotto l'header */
}

.hero {
    margin-top: 30px; /* Aumenta lo spazio sopra la sezione hero */
}

/* Why clients choose me section */
.why-choose-me {
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: left;
    max-width: 100%;
    margin: 0 auto;
}

.why-choose-me h4 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #343434;
    font-size: 22px;
}

.why-choose-me ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #748182;
}

.why-choose-me ul li i {
    color: #065866; /* Blu turchese/oceano */
    margin-right: 10px;
}

.services .item {
    margin-bottom: 30px;
}

.services .item h6 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
}

.services .item p {
    font-size: 15px;
    line-height: 1.6;
}

.services .item .icon {
    font-size: 40px;
    color: #065866; /* Blu turchese/oceano */
    margin-bottom: 20px;
    display: inline-block;
}

/* Common Client Requests Section */
.client-requests {
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    margin-bottom: 30px;
}

.client-requests h4 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #033841;
    font-weight: 600;
}

.client-requests .fa-key {
    color: #065866; /* Blu turchese/oceano */
    margin-right: 10px;
}

.request-item {
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    height: 100%;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.request-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.request-item i {
    font-size: 36px;
    color: #065866; /* Blu turchese/oceano */
    margin-bottom: 15px;
}

.request-item p {
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
}

.ready-step {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ready-step h4 {
    color: #033841;
    font-size: 22px;
}

.ready-step .fa-phone {
    color: #065866; /* Blu turchese/oceano */
    margin-right: 10px;
}

.ready-step p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Contact items in ready-step box */
.contact-item {
    text-align: center;
    margin-bottom: 20px;
}

.contact-item .icon {
    font-size: 30px;
    color: #065866; /* Blu turchese/oceano */
    margin-bottom: 15px;
    display: inline-block;
}

.contact-item h6 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    color: #033841;
}

.contact-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .request-item {
        margin-bottom: 20px;
    }
    
    .contact-item {
        margin-bottom: 30px;
    }
}