/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
  body {
    color: #000;
    background-color: #fff;
    line-height: 1;
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    padding: 1.5rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 100;
    transition: border-bottom 0.3s ease;
}

 header.header-scrolled {
 box-shadow: 0 4px 4px rgb(210, 210, 210);
    border-bottom: none;
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.3rem;
    font-weight: Medium;
    text-decoration: none;
    color: #000;
    letter-spacing: 0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.lang-btn {
    background: #f0f0f0;
    border: none;
    color: inherit;
    font-family: inherit;
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0.3rem 0.6rem;
    margin: 0;
    text-transform: uppercase;
    position: relative;
    border-radius: 4px;
}

.lang-btn:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: currentColor;
    transition: width 0.3s ease;
}

nav a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 0.85rem;
    transition: all 0.3s;
    position: relative;
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #000;
    transition: width 0.3s;
}

nav a:hover:after, .lang-btn:hover:after {
    width: 100%;
}

/* News section styles */
.news-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 2rem;
}

.news-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    color: white;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    width: 100%;
    text-align: left;
}

.news-content h3,
.news-content .date,
.news-content p {
    color: white !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.news-content h3 {
    margin-bottom: 0.5rem;
}

.news-content .date {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.news-content p {
    font-size: 0.9rem;
    max-width: 80%;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    margin: 0;
    border: none;
    background-image: url('未命名文件夹/hero-bottom.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.hero-content {
    max-width: 700px;
    text-align: left;
    margin: auto 0;
}

.hero h1 {
    font-size: 28.0rem;
    font-weight: 400;
    margin-bottom: 1.8rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 8.0rem;
    color: #333;
    max-width: 1000px;
    line-height: 1.5;
    margin-bottom: 2.5rem;
}

.hero .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.hero .btn:hover {
    background: #000;
    color: #fff;
}

/* Work Showcase Section */
.work-showcase, .services-overview, .news-section, .contact-section, .company-overview, .team-section {
    padding: 8rem 8%;
}

.work-showcase {
    border-bottom: 1px solid rgba(0,0,0,0.8);
    margin-bottom: 2rem;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.work-item {
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.work-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 1.2rem;
    transition: transform 0.4s ease;
}

.work-item:hover img {
    transform: scale(1.02);
}

.work-item h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.work-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Services Overview Section */
.services-overview {
    padding: 6rem 8% 12rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.8);
}

.service-column {
    background-color: rgba(0,0,0,0.03);
    padding: 2rem;
    border-radius: 8px;
}

.work-showcase h2, .company-overview h2 {
    font-size: 2.8rem;
    margin: 0 0 3.5rem;
    text-align: left !important;
    font-weight: 300;
    letter-spacing: -0.02em;
}
.services-overview h2, .news-section h2, .contact-section h2 {
    font-size: 3.5rem;
    margin-bottom: 0;
    text-align: left !important;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.section-layout {
    margin-top: 0;
    display: flex;
    gap: 0;
    align-items: flex-start;
}

.section-layout .left-content {
    display: none;
}

.section-layout .left-content h2 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0;
}


.overview-content, .services-content {
    text-align: left;
}

.overview-content p {
    text-align: left !important;
}

.section-content {
    flex: 1;
    text-align: left;
}

/* Services Section */
.services-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

@media (max-width: 1200px) {
    .services-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-column h3 {
    font-weight: normal;
    text-align: left;
}

.service-column p {
    text-align: left !important;
}

/* TEAM SECTION */
.full-width {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Removed custom padding to inherit global container styles */

.company-overview .section-layout {
    display: block;
}

.company-overview .left-content {
    margin-bottom: 2rem;
    padding-top: 2rem;
}

.team-section {
    margin: 0 auto;
    text-align: left;
    padding: 6rem 8% 8rem;
    width: 100%;
    max-width: none;
    border-bottom: none;
}
.team-header {
    display: grid;
    grid-template-columns: 180px 1fr 80px;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: none;
}
.header-name, .header-title, .header-location {
    font-size: 0.9rem;
    color: #666;
    text-align: left;
    min-width: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-left: 0;
    margin-left: 0;
    max-width: 100%;
}

.team-content {
    width: 100%;
}

.team-section .section-content {
    flex: 1 !important;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.team-section .left-content {
    display: none;
}

.team-section .section-layout {
    display: flex;
    gap: 0;
    align-items: flex-start;
    margin-left: 0;
    padding-left: 0;
}

.team-section > .container {
    margin: 0 auto !important;
    max-width: 1200px !important;
}

.team-section {
    padding: 4rem 0 !important;
    margin: 0 !important;
}

.team-member {
    display: grid;
    grid-template-columns: 180px 200px 100px;
    gap: 1rem;
    padding: 0.3rem 0;
    width: 100%;
    line-height: 0.7;
    border-bottom: none;
}

.team-member:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .team-member {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .member-name, .member-title, .member-location {
        min-width: auto;
        margin-bottom: 0.3rem;
    }
}

.member-name {
    font-weight: normal;
    font-size: 1.05rem;
    min-width: 120px;
}

.member-title {
    font-size: 0.9rem;
    color: #666;
    min-width: 180px;
}

.member-location {
    font-size: 0.85rem;
    color: #666;
    min-width: 100px;
    text-align: left;
}

.service-column {
    text-align: right;
    flex: 1;
    min-width: 200px;
}

.service-column h3 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* News and Contact text alignment */
.news-item h3 {
    text-align: left;
}

.news-item p {
    text-align: left !important;
}

.service-column p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #333;
}



.service-card:hover {
    border-color: #000;
}

.service-card h3, .news-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card p, .news-item p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #333;
}

/* Company Overview Section */
.company-overview {
    padding: 6rem 8% 6rem;
    border-bottom: 1px solid rgba(0,0,0,0.8);
    max-width: 100%;
    margin: 0;
}



.overview-content {
    margin-top: 0;
    text-align: left;
}

.overview-content p {
    font-size: 1rem;
    line-height: 2.0;
    margin-bottom: 2rem;
    color: #333;
    text-align: left !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

/* News Section */
.news-section {
    padding: 6rem 8% 12rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.8);
    margin: 0 calc(-100vw/2 + 100%/2);
    max-width: 100vw;
}

.news-grid {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
    align-items: start;
}

.news-item {
    background-color: #fff;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.news-item h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.date {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.8rem;
}

.news-item p {
    font-size: 0.9rem;
    color: #333;
}

/* Contact Section */
.contact-section {
    padding: 6rem 8%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}
.contact-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-top: -1rem;
}
.contact-message {
    font-size: 3.0rem;
    margin-bottom: 0;
    text-align: left;
    flex: 1;
    padding-right: 2rem;
    padding-left: 2rem;
    margin-left: 0;
    margin-right: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    flex: 1;
}

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



.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: start;
}

.contact-office {
    padding: 0 2rem 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.office h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.office p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: left !important;
    line-height: 1.2;
}

.contact-section {
    padding: 8rem 8%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.8);
}
.contact-section .section-layout {
    margin-top: 0;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}



.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: start;
}

.contact-office {
    padding: 0 2rem 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.office h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.office p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0.8rem;
    text-align: left !important;
}

/* Footer */
footer {
    padding: 0;
    background: #f9f9f9;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 4%;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: Medium;
    letter-spacing: 0.5px;
    padding-left: 0;
    text-align: left;
    margin-right: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto;
    flex: 0 0 auto;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.6;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #666;
    text-align: right;
    margin-left: auto;
    padding-right: 0;
    min-width: 100px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .work-grid,
.services-grid,
.news-grid,
.contact-offices {
        grid-template-columns: 1fr;
    }
    nav ul {
        gap: 1rem;
    }
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .hero {
        height: auto;
        padding: 12rem 5% 6rem;
    }
    .work-showcase, .services-overview, .company-overview, .contact-section {
    padding: 5rem 0;
}
}

@media (max-width: 480px) {
    .team-member {
        padding: 1rem;
        background: #f9f9f9;
        border-radius: 4px;
    }
}
.team-grid::before {

    font-weight: 500;
    padding: 1rem 0 0.5rem;
    border-bottom: 2px solid #000;
    display: grid;
    grid-template-columns: 180px 1fr 120px;
    gap: 2rem;
    margin-bottom: 2rem;
}