.pic-section {
    color: #595757;
}

.pic-section img {
    width: 100%;
}

.brand-story {
    background: #fff;
    padding: 70px 0;
}

.brand-story .story-content {
    text-align: center;
}

.brand-story .story-content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #595757;
}

.contact-info {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #bf557b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.contact-text {
    font-size: 16px;
    color: #595757;
    line-height: 1.6;
}

.contact-text .value {
    font-weight: 700;
    color: #595757;
}

/* Quote Section Styles */
.contact-section {
    padding: 120px 20px;
    text-align: left;
    color: white;
    background-color: #efefef;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/contact/pic2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transform-origin: center;
    transition: transform 600ms ease;
}

.pic3 {
    margin-top:40px;
    padding: 60px 20px 320px 20px;
}

.pic3::before {
    background-image: url('../images/contact/pic3.jpg')!important;
}

.contact-section > * {
    position: relative;
    z-index: 1;
}

.contact-section:hover::before {
    transform: scale(1.12) translate3d(0, -2%, 0);
}

@media (prefers-reduced-motion: reduce) {
    .contact-section::before {
        transition: none;
        transform: none;
    }
    .contact-section:hover::before {
        transform: none;
    }
}

.contact-section h2 {
    font-size: 36px;
    line-height: 1.4;
    color:#000;
}

.section2-text{
    width: 45%;
    margin-left:10%;
    color:#000;
    font-size:18px;
    line-height: 1.8;
}

.section3-text{
    width: 100%;
    text-align: center;
    font-size:18px;
    line-height: 1.8;
}

.section3-text h2{
    color:#f2382f;
}

@media (max-width: 1000px) {
    .section2-text{
        width: 65%;
        margin-left:10%;
    }
}

@media (max-width: 768px) {
    .section2-text{
        width: 65%;
        margin-left:10%;
    }
}

@media (max-width: 480px) {
    .brand-story {
        padding: 44px 0;
    }

    .brand-story .story-content p {
        font-size: 16px;
    }

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

    .contact-section h2 {
        font-size: 28px;
    }

    .section2-text{
        width: 90%;
        margin:auto;
        font-size: 16px;
    }
}

.job {
    background: #efefef;
    padding: 70px 0 90px;
    text-align: center;
}

.job-title {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #235fa8;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
}

.job-title .pipe {
    color: rgba(35, 95, 168, 0.7);
}

.job-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 240px));
    justify-content: center;
    gap: 18px 20px;
}

.job-card {
    background: #fff;
    border: 1px solid rgba(35, 95, 168, 0.35);
    border-radius: 10px;
    padding: 16px 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.job-card-text {
    text-align: left;
}

.job-card-name {
    font-size: 18px;
    font-weight: 800;
    color: #333;
    line-height: 1.1;
}

.job-card-sub {
    margin-top: 6px;
    font-size: 12px;
    color: #8a8a8a;
}

.job-card-icon {
    flex: 0 0 auto;
}

.job-card-icon img {
    height: 50px;
}



.job-upload {
    margin-top: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 30px 2px;
    border-radius: 999px;
    background: #235fa8;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 400;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.job-upload:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.job-note {
    margin-top: 12px;
    font-size: 18px;
    color: #595757;
}

@media (max-width: 768px) {
    .job-grid {
        grid-template-columns: 1fr;
    }
}

.address-section {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 60px 0 90px;
}

.address-inner {
    display: flex;
    gap: 36px;
    align-items: flex-start;
}

.address-map {
    flex: 0 0 52%;
}

.address-map img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.address-info {
    flex: 1;
}

.address-info h3 {
    margin: 0 0 14px;
    padding-bottom:10px;
    font-size: 22px;
    font-weight: 800;
    color: #235fa8;
    border-bottom: 1px solid #235fa8;
}

.address-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.address-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.address-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #188a83;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.address-text {
    font-size: 14px;
    color: #595757;
    line-height: 1.7;
    padding-top: 4px;
}

.address-text .label {
    font-weight: 800;
    color: #595757;
}

.address-divider {
    height: 1px;
    background: rgba(35, 95, 168, 0.35);
    margin: 16px 0 12px;
}

.address-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #595757;
    font-size: 13px;
}

.address-link {
    color: #595757;
    text-decoration: none;
}

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

.address-links .sep {
    color: rgba(89, 87, 87, 0.6);
}

.address-social {
    margin-top: 16px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-btn img {
    width: 100%;
}


.social-btn.weibo {
    background: #e54b4b;
}

.social-btn.mail {
    background: #2b64a2;
}

@media (max-width: 900px) {
    .address-inner {
        flex-direction: column;
    }

    .address-map {
        flex: 1;
        width: 100%;
    }
}
