/* src/main/resources/static/css/service.css */

.service-header {
    margin-bottom: 50px;
    margin-top: 80px;
    padding: 0 15px;
}

.service-header h1 {
    color: #0C71C0;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
}
.service-header h2 {
    color: #3D3D3DCC;
    font-size: 28px;
    margin-bottom: 20px;
}

.service-header .lead {
    color: #3D3D3DB2;
    font-size: 18px;
    line-height: 36px;
    max-width: 800px;
    margin: 0 auto;
}

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 15px;
}

.theaty-service-box {
    margin-bottom: 60px;
}

.theaty-service-box .card {
    border: none !important;
    margin-bottom: 30px;
    background: #FFFFFF;
    box-shadow: 4px 4px 12px 0 #DCDCDC;
    transition: transform 0.3s ease;
}

.theaty-service-box .card:hover {
    transform: translateY(-5px);
}

.theaty-service-box .card-body {
    padding: 30px;
    background-size: cover;
    background-position: center;
    height: 200px;
}

.theaty-service-box .card-title {
    color: #000000CC;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.theaty-service-box .card-text {
    color: #00000099;
    font-size: 16px;
    line-height: 1.8;
}

.faq-section {
    margin-bottom: 80px;
}

.faq-section h2 {
    color: #0C71C0;
    font-size: 32px;

    text-align: center;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    background:#F6FBFF;
}

.accordion-button {
    color: #000000CC;
    font-size: 22px;
    font-weight: bold;
    img{
        margin-right: 20px;
    }
}

.accordion-button:not(.collapsed) {
    color: #000000CC;
    background:#F6FBFF;
    font-size: 22px;
    font-weight: bold;
    box-shadow:none;
}

.accordion-body {
    background-color: transparent;
    padding: 20px;
    color: #000000A6;
    font-size: 18px;
    line-height: 1.8;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .service-header {
        margin: 40px 0;
    }

    .service-header h1 {
        font-size: 32px;
    }

    .service-header .lead {
        font-size: 16px;
        line-height: 28px;
    }

    .theaty-service-box .card-body {
        min-height: 200px;
        padding: 20px;
    }

    .theaty-service-box .card-title {
        font-size: 20px;
    }

    .theaty-service-box .card-text {
        font-size: 14px;
    }

    .faq-section {
        margin: 40px 0;
    }

    .faq-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
}