.hero {
    background: rgb(214,122,8);
    background: linear-gradient(90deg, rgba(214,122,8,1) 35%, #643ea8 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

/* Services Section */
.services-section {
    padding: 50px 30px;
    text-align: center;
    background-color: #f9f9f9;
}

.services-section h3 {
    color: #643ea8;
    margin-bottom: 30px;
    font-size: 36px;
}

.service-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 50px;
    column-gap: 20px;
}

.service-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: checkmark;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-item__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 15px;
}

.service-item h2 {
    font-size: 24px;
    color: #333;
    text-align: left;
}

.service-item img.back-graphic {
    width:18%;
    {{/* filter: contrast(.1); */}}
}

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

.philosophy-section {
    padding: 50px 30px;
    background-color: #fff;
    text-align: center;
}

.philosophy-section h2 {
    color: #643ea8;
    margin-bottom: 30px;
    font-size: 36px;
}

.philosophy-section p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.additional-tips {
    padding: 50px 30px;
    background: #fff;
    text-align: center;
    margin-top: 50px;
        background-color: #f9f9f9;

}

.additional-tips h2 {
    color: black;
    margin-bottom: 30px;
    font-size: 30px;
    {{/* text-decoration: */}}
}

.additional-tips p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.additional-tips ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.additional-tips ul li {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: left;
}
.additional-tips ul li span {
    text-align: left;
}

.additional-tips ul li::before {
    content: '✔';  /* Use a checkmark icon for tips */
    color: #643ea8;
    font-size: 24px;
    margin-right: 15px;
}

/* Media Queries for Mobile */
@media (max-width: 960px) {
    .service-list {
        flex-direction: column;
        align-items: center;
        row-gap: 30px;
    }

    .service-item {
        width: 100%;
        max-width: 600px
    }

    .service-item p {
        text-align: left;
    }

    .service-item__header {
        justify-content: left;
    }
}
