body {
    padding-top: 70px;
}

#main {
    padding: 60px 0 80px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #222222;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #eab203;
    bottom: -10px;
    left: calc(50% - 25px);
}

.empty-testimonials {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 60px 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.empty-testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #eab203, #f7e7a2);
}

.empty-icon {
    font-size: 70px;
    color: rgba(234, 178, 3, 0.2);
    margin-bottom: 25px;
    display: block;
}

.empty-message {
    font-size: 20px;
    color: #444;
    margin-bottom: 15px;
    font-weight: 600;
}

.empty-description {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 16px;
}

@media (max-width: 768px) {
    .empty-testimonials {
        padding: 40px 20px;
    }

    .empty-icon {
        font-size: 50px;
    }

    .empty-message {
        font-size: 18px;
    }

    .section-title h2 {
        font-size: 26px;
    }
}