.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
}
.service-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
}
.lines-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 30px;
}
.line {
    width: 50px;
    height: 4px;
    background-color: #f0385a;
    border-radius: 2px;
}
.line.middle {
    width: 80px;
}
.about-content {
    text-align: right;
}
.features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}
.feature {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f9f9f9;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
    background: #f0385a;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 20px;
}
.back-to-top.show {
    opacity: 1;
}
@media screen and (max-width: 768px) {
    .container {
        width: 95%;
        padding: 30px 15px;
    }
    .service-title {
        font-size: 28px;
    }
    .feature {
        padding: 15px;
        font-size: 14px;
    }
}
@media screen and (max-width: 480px) {
    .service-title {
        font-size: 24px;
    }
    .feature {
        padding: 10px;
        font-size: 12px;
    }
}
