body {
    padding-top: 90px;
}

.container-main{ 
    max-width: 1180px;
    margin: 0 auto;
    overflow-x: hidden;
}

.section {
    padding: 20px;
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 10px 0;
}

.content-wrapper {
    display: flex;
    gap: 20px;
}

.text-content {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
}

.image-content {
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

.image-content img {
    max-width: 80%;
    height: auto;
    display: block;
}
.image-content-perfect-ending{
    width: 310px;
    margin-top: 0px;
}

.project-bg {
    background-color: #ffffff;
}

.project-bg .section-title {
    color: #ffd302;
}

.risk-eval {
    background-color: #ffdf48;
}

.risk-eval .section-title {
    color: #ffffff;
}

.resolving-issues {
    background-color: #fff;
}

.resolving-issues .section-title {
    color: #ffd302;
}

.delivery-section {
    background-color: #efefef;
}

.delivery-section .section-title {
    color: #ffd302;
}

.perfect-ending {
    background-color: #fff;
}

.perfect-ending .section-title {
    color: #ffd302;
}

.quote-section {
    background-color: #fdd100;
    padding: 30px 20px;
}

.quote-text {
    font-size: 16px;
    line-height: 1.8;
    color: #212121;
}

.quote-author {
    text-align: right;
    margin-top: 20px;
    font-style: italic;
}

.tags-section {
    padding: 20px;
    background-color: #f8f8f8;
}

.tags-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.tag-link {
    color: #0782c1;
    text-decoration: none;
    margin-right: 15px;
    display: inline-block;
    margin-bottom: 5px;
}

.tag-link:hover {
    text-decoration: underline;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .section {
        padding: 15px;
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .text-content {
        font-size: 14px;
        line-height: 1.6;
    }

    .image-content {
        width: 100%;
        text-align: center;
    }

    .image-content img {
        max-width: 80%;
        margin: 0 auto;
    }

    .quote-section {
        padding: 20px 15px;
    }

    .quote-text {
        font-size: 14px;
    }

    .tags-section {
        padding: 15px;
    }

    .tag-link {
        display: block;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 18px;
    }

    .text-content {
        font-size: 13px;
    }

    .image-content img {
        max-width: 90%;
    }

    .quote-text {
        font-size: 13px;
    }
}
.faster-section {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    overflow: hidden;
}

.faster-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.faster-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    width: 800px;
    max-width: 1180px;
    margin: 0 auto;
}

.common{
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
}

.faster-title {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ecc400;
    text-transform: uppercase;
}

.faster-subtitle {
    font-size: 2rem;
    font-weight: normal;
    color: #000000;
    line-height: 2;
}
/* Responsive design */
@media screen and (max-width: 1200px) {
    .faster-content {
        max-width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .faster-image {
        height: 120px;
        object-fit: cover;
    }

    .faster-content {
        text-align: left;
    }

    .faster-title {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
        line-height: 1.3;
    }

    .faster-subtitle {
        width: 180px;
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    .faster-title,
    .faster-subtitle {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
}