
.greetings-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.greeting-text {

    max-width: 750px;
}


.greeting-title {
    font-size: 1.75rem;
    line-height: 1.4;
    color: var(--primary-color);


    position: relative;
    padding-bottom: 20px;
}

.greeting-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-hover);
}


.greeting-body p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #555;
}

.greeting-body strong {
    color: var(--primary-color);
    font-weight: 800;
}


.greeting-body ul li {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}


@media (max-width: 991px) {

    .greeting-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .greeting-text {
        text-align: left;
    }


    .chair-img {
        max-width: 220px;
    }
}