.about-text {
    color: var(--black);
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 18px;
}

.about-images .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-images img:hover {
    transform: translateY(-5px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .about-section {
        padding: 20px;
    }

    .about-text p {
        font-size: 16px;
    }

    .about-images .image-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Contact Section Styles */



.team-title {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-info-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.contact-item i {
    color: var(--primary-blue);
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.contact-item a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-red);
}

.company-info {
    margin: 20px 0;
    font-size: 18px;
}

.company-info p {
    margin: 10px 0;
    font-size: 18px;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}

.company-info i {
    color: var(--primary-blue);
}

.company-logo {
    margin: 30px 0;
}

.company-logo img {
    max-width: 200px;
    height: auto;
}

.office-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.office-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.office-images img:hover {
    transform: translateY(-5px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    
    .team-title {
        font-size: 20px;
    }

    .contact-item {
        font-size: 18px;
    }

    .office-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .company-logo img {
        max-width: 150px;
    }
}

/* Terms Section Styles */


.terms-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 40px;
    padding: 20px;
    background: var(--light-blue);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.terms-intro a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.terms-intro a:hover {
    color: var(--primary-red);
}

.terms-list {
    display: grid;
    gap: 30px;
}

.terms-item {
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.terms-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.terms-item h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-item h3 i {
    font-size: 20px;
    color: var(--primary-green);
}

.terms-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--black);
}

.office-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.office-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.office-images img:hover {
    transform: translateY(-5px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    

    .terms-intro {
        font-size: 16px;
        padding: 15px;
    }

    .terms-item h3 {
        font-size: 20px;
    }

    .terms-item p {
        font-size: 15px;
    }

    .office-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}