* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #FDB441;
    --dark-bg: #1f1e1d;
    --light-bg: #f2eee3;
    --text-dark: #1B1B1B;
    --text-light: #ffffff;
    --text-muted: #6e6155;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--dark-bg);
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.creativ{
	display: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    background: #FFC93B;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    color: var(--dark-bg);
}

.nav-menu {
    display: flex;
    list-style: none;
	margin: 0 auto;
	font-size: 20px;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #FFC93B;
}

.nav-menu li {
    position: relative;
	padding: 20px 40px 0 40px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-bg);
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.portfolio_svg{
	width: 434px;
	height: 156px;
}

.nav-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #333;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(253, 180, 65, 0.1);
}

.dropdown-toggle {
    cursor: pointer;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
}

/* Hero Section */
#video-background {
	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 1;
	background-size: cover;
}
.hero {
    background: var(--dark-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 2;
	object-fit: cover; /* 保持比例填充 */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: var(--text-light);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero .highlight {
    color: #FFC93B;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #1B1B1B;
    color: #FFC93B;
    padding: 0.5rem 1.2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 7px;
    transition: transform 0.3s ease;
}

.cta-button-a {
    display: inline-block;
    background: #FFC93B;
    color: #1B1B1B;
    padding: 0.5rem 1.2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 7px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button-a:hover {
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--dark-bg);
    color: var(--text-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container3 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container2 {
    margin: 0 auto;
    padding: 0 2rem;
}

.service-overview p {
	text-align: left !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #FFC93B;
}

.about-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Services Section */
.services {
    background-image: url("./image/img_7.png");
	background-size: cover; /* 或 contain, 或具体尺寸 */
}
.baiwucheng{
	width: 100%;
	height: 900px;
	background: rgba(255, 255, 255, 0.6); 
	backdropFilter: blur(1px);
}

.baiwucheng2{
	width: 100%;
	height: 700px;
	background: rgba(255, 255, 255, 0.6); 
	backdropFilter: blur(1px);
}

.img_8{
	width: 520px;
	height: 520px; 
	objectFit: cover;
}

.img_12{
	width: 620px;
	height: 600px; 
	objectFit: cover;
}

.img_15{
	width: 620px;
	height: 730px; 
	objectFit: cover;
}

.img_10{
	width: 620px;
	height: 550px; 
	objectFit: cover;
}

.img_16{
	width: 335px;
	height: 335px; 
	objectFit: cover;
}

.img_17{
	width: 335px;
	height: 335px;
	objectFit: cover;
}

.img_10_xz{
	display: none;
}

.img_12_xz{
	display: none;
}

.img_15_xz{
	display: none;
}

.img_11{
	width: 620px;
	height: 420px; 
	objectFit: cover;
}

.img_14{
	width: 620px;
	height: 680px; 
	objectFit: cover;
}

.img_18{
	width: 520px;
	height: 520px; 
	objectFit: cover;
}

.img_23{
	width: 520px;
	height: 520px; 
	objectFit: cover;
}

.img_25{
	display: none;
}

.img_19{
	width: 620px;
	height: 420px; 
	objectFit: cover;
}

.img_20{
	width: 840px;
	height: 560px; 
	objectFit: cover;
	float: right;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: #FFC93B;
    text-decoration: none;
    font-weight: 500;
	margin-bottom: 0rem !important;
}

.service-link:hover {
    /* text-decoration: underline; */
}

/* Results Section */
.results {
    padding: 6rem 0;
    background: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
}

.results-content {
    margin-bottom: 3rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.client-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(1);
    opacity: 0.7;
}

/* Advantage Section */
.advantage {
    background-image: url("./image/img_9.png");	background-size: cover; /* 或 contain, 或具体尺寸 */
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.advantage-item {
    /* display: flex; */
    align-items: flex-start;
    gap: 1rem;
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: #FFC93B;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 2rem 0;
    background: #1B1B1B;
    color: var(--text-light);
    text-align: center;
}

.contact-section-a {
    padding: 6.8rem 0 2rem 0;
    background: #1B1B1B;
    color: var(--text-light);
    text-align: center;
}

.policy-section{
	padding: 10rem 0 4rem 20rem;
	background: #F5F7F6;
	color: #1B1B1B;
}

.policy-svg{
	width: 1300px;
	height: 5498px;
}

.policy-svg-app{
	display: none;
}


.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-section .highlight {
    color: #FFC93B;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    /* margin-top: 3rem; */
    text-align: left;
}

.contact-info {
	/* padding: 80px 0 80px 0; */
    background-color: #F5F7F6;
}

.contact-svg{
	width: 656px;
	height: 865px;
}

.contact-svg-div{
	width: 556px;
	height: 500px;
	transform: translate(100px, 220px);
}

.contact-svg-div-a{
	display: none;
}

.contact-svg-a{
	font-size: 34px;
	font-weight: 700;
	min-height: 42px;
	margin-bottom: 20px;
	color: #1B1B1B;
	line-height: 1.18;
}

.contact-svg-b{
	color:#1B1B1B;
	font-size: 18px;
	line-height: 1.8;
	padding-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #333;
}

.contact-item strong {
    color: #FFC93B;
    min-width: 140px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #F5F7F6;
}

.form-group option{
	color: #1B1B1B;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #444;
    border-radius: 5px;
    background: #F5F7F6;
    /* color: var(--text-light); */
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: #FFC93B;
    color: var(--dark-bg);
    padding: 0.7rem 1.2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    width: 100%;
}

.nyc{
	color: white;
	font-size: 32px;
	font-weight: 700;
}

.Send{
	color: #FFC93B;
	font-size: 32px;
	font-weight: 700;
}

.submit-button:hover {
    transform: translateY(-2px);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.loading {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid #22c55e;
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* Page Styles */
.page-hero {
    background: #F5F7F6;
    color: var(--CV-Graphite-Black, #1B1B1B);
    padding: 9rem 0 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--CV-Graphite-Black, #1B1B1B);
}

.service-details {
    max-width: 900px;
    margin: 0 auto;
}

.service-overview {
	padding: 1rem 0;    background: #F5F7F6;
    text-align: center;
    /* margin-bottom: 4rem; */
}

.service-overview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-overview-dark {
	padding: 1rem 0;    background: var(--text-dark);
    text-align: center;
    /* margin-bottom: 4rem; */
}

.service-overview-dark h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--CV-White, #FFF);
}

.service-item-dark {
    background: var(--text-dark);
    padding: 0 0 1rem 1rem;
}

.portfolio-item-dark{
	padding: 0 1rem 1rem 0;
}

.portfolio-item{
	padding: 0 0 1rem 1rem;
}

.service-item {
    background: #F5F7F6;
    padding: 0 1rem 1rem 0;
}

.cta-section {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Portfolio Styles */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.portfolio-image {
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.portfolio-image img {
    max-width: 100%;
    height: auto;
}

.portfolio-content {
    padding: 2.5rem;
}

.portfolio-details {
    margin: 2rem 0;
}

.portfolio-details h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.portfolio-details ul {
    color: var(--text-muted);
    padding-left: 1.5rem;
}

.portfolio-details li {
    margin-bottom: 0.5rem;
}

.portfolio-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.portfolio-category {
    color: #FFC93B;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.portfolio-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.result-item {
    text-align: center;
}

.result-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFC93B;
}

.result-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: #1B1B1B;
    color: var(--text-light);
    padding: 2rem 0 1rem;
    border-top: 1px solid #333;
}

.spansvg{
	display: flex;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: var(--text-muted);
}

/* Animation Classes */
.service-card,
.advantage-item,
.client-logo,
.portfolio-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.service-card.animate-in,
.advantage-item.animate-in,
.client-logo.animate-in,
.portfolio-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }

.advantage-item:nth-child(1) { transition-delay: 0.1s; }
.advantage-item:nth-child(2) { transition-delay: 0.2s; }
.advantage-item:nth-child(3) { transition-delay: 0.3s; }
.advantage-item:nth-child(4) { transition-delay: 0.4s; }

.client-logo:nth-child(1) { transition-delay: 0.1s; }
.client-logo:nth-child(2) { transition-delay: 0.2s; }
.client-logo:nth-child(3) { transition-delay: 0.3s; }

.portfolio-item:nth-child(1) { transition-delay: 0.1s; }
.portfolio-item:nth-child(2) { transition-delay: 0.2s; }
.portfolio-item:nth-child(3) { transition-delay: 0.3s; }

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark-bg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem;
        transition: right 0.3s ease;
    }
	
	.shusvg{
		display: none;
	}
	
	.creativ{
		display: block;
		padding-top: 10px;
	}
	
	.cvsvg {
		display: none;
	}
	
	.results{
		padding: 6rem 0;
	}

    .nav-menu.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: block;
		left: 10px;
		position: absolute;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.3);
        margin-top: 0.5rem;
        border-radius: 5px;
    }

    .dropdown-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
	
	.baiwucheng{
		max-width: 100%; /* 图片最大宽度不超过容器 */
		height: auto;    /* 高度按比例自适应 */
		display: block;  /* 避免图片下方留白 */
		padding-bottom: 30px;   /* 下方留白高度（根据需要调整） */
	}
	
	.baiwucheng2{
		max-width: 100%; /* 图片最大宽度不超过容器 */
		height: auto;    /* 高度按比例自适应 */
		display: block;  /* 避免图片下方留白 */
		padding-bottom: 30px;   /* 下方留白高度（根据需要调整） */
	}
	
	.service-section{
		padding: 0 1rem 1rem 1rem !important;
	}
	
	.service-section-dark{
		padding: 0 1rem 1rem 1rem !important;
	}
	
	.portfolio-section-dark{
		padding: 0 1rem 1rem 1rem !important;
	}
	
	.portfolio-section{
		padding: 2rem 1rem 2rem 1rem !important;
	}
	
	.img_8{
		max-width: 100%; /* 图片最大宽度不超过容器 */
		height: auto;    /* 高度按比例自适应 */
		display: block;  /* 避免图片下方留白 */
	}
	
	.img_11{
		max-width: 100%; /* 图片最大宽度不超过容器 */
		height: auto;    /* 高度按比例自适应 */
		display: block;  /* 避免图片下方留白 */
		margin-bottom: 1rem;
	}
	
	.img_14{
		max-width: 100%; /* 图片最大宽度不超过容器 */
		height: auto;    /* 高度按比例自适应 */
		display: block;  /* 避免图片下方留白 */
		margin-bottom: 1rem;
	}
	
	.img_18{
		max-width: 100%; /* 图片最大宽度不超过容器 */
		height: auto;    /* 高度按比例自适应 */
		display: block;  /* 避免图片下方留白 */
		margin-bottom: 1rem;
	}
	
	.img_19{
		max-width: 100%; /* 图片最大宽度不超过容器 */
		height: auto;    /* 高度按比例自适应 */
		display: block;  /* 避免图片下方留白 */
		margin-bottom: 1rem;
	}
	
	.img_20{
		max-width: 100%; /* 图片最大宽度不超过容器 */
		height: auto;    /* 高度按比例自适应 */
		display: block;  /* 避免图片下方留白 */
		margin-bottom: 1rem;
	}

    .services-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
		gap: 1rem;
        text-align: center;
    }

    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        /* text-align: center; */
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 0 1rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }
	
	.page-hero{
		padding: 6.5rem 0 0;
	}

    .portfolio-item {
        grid-template-columns: 1fr;
    }

    .portfolio-results {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-section {
        padding: 2rem;
    }
	
	.spansvg{
		display: flex;
		justify-content: center;
	}
	
}

@media (max-width: 480px) {
    .nav-container {
		display: flex;
		justify-content: center; /* 主轴上居中 */
		align-items: center;    /* 交叉轴上居中 */
		position: relative;     /* 为绝对定位子元素提供参照 */
    }

    .container {
        padding: 0 1rem;
    }
	
	.container3 {
	    padding: 0;
	}

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .service-overview h2 {
        font-size: 1.6rem;
    }
}

/* Service Navigation */
.service-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-nav-link {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 165, 0, 0.1);
    color: #FFC93B;
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid #FFC93B;
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-nav-link:hover {
    background: #FFC93B;
    color: var(--dark-bg);
}

/* Service Sections */
.service-section {
	padding: 0 4rem 4rem 4rem;
	background-color: #F5F7F6;
}

.service-section:last-of-type {
    border-bottom: none;
}

.service-section-dark {
	padding: 0 4rem 4rem 4rem;
	background-color: var(--text-dark);
}

.service-section-dark:last-of-type {
    border-bottom: none;
}

.portfolio-section-dark {
	padding: 0 4rem 1rem 4rem;
	background-color: var(--text-dark);
}

.portfolio-section-dark:last-of-type {
    border-bottom: none;
}

.portfolio-section {
	padding: 6rem 4rem 6rem 4rem;
	background-color: #F5F7F6;
}

.portfolio-section:last-of-type {
    border-bottom: none;
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-header h2 {
    color: #FFC93B;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}


.service-overview p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.1rem;
    text-align: center;
    /* margin-bottom: 3rem; */
}

.service-overview-dark p {
    color: var(--CV-White, #FFF);
    line-height: 1.7;
    font-size: 1.1rem;
    text-align: center;
    /* margin-bottom: 3rem; */
}

.services-list{
	display: flex;
}

.service-items {
    display: flow;
}

.portfolio-items{
	display: flow;
	padding-left: 1rem;
}

.pip{
	color: #82572C;
	font-size: 32px;
	font-weight: 700;
	padding-left: 1rem;
	padding-bottom: 1rem;
}

.service-item h5 {
    color: var(--CV-Bronze, #82572C);
    font-size: 24px;
    font-weight: 700;
}

.service-item p {
    color: var(--text-dark);
    line-height: 1.6;
}


.service-item p span{
	font-weight: 700;
}

.service-item-dark h5 {
    color: var(--CV-Gold, #FFC93B);
    font-size: 24px;
    font-weight: 700;
}

.service-item-dark p {
    color: var(--CV-White, #FFF);
    line-height: 1.6;
}

.portfolio-item-dark p {
    color: var(--CV-White, #FFF);
    line-height: 1.6;
}

.portfolio-item p {
    color: #1B1B1B;
    line-height: 1.6;
}

.cta-button-dark{
	float: right;
}


.service-item-dark p span{
	font-weight: 700;
}

.portfolio-item-dark p span{
	font-weight: 700;
	color:var(--CV-Gold, #FFC93B);
}

.portfolio-item p span{
	font-weight: 700;
	color:var(--CV-Bronze, #82572C);
}

.portfolio-item-a{
    color: #1B1B1B;
    line-height: 1.6;
}

.img_20_xz{
	display: none;
}

.portfolio-item-dark-a{
    color: var(--CV-White, #FFF);
    line-height: 1.6;
}

.img_24{
	display: none;
}

@media (max-width: 768px) {
    .service-nav {
        gap: 0.5rem;
    }

    .service-nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .service-header h2 {
        font-size: 2rem;
    }

    .service-overview h3 {
        font-size: 1.5rem;
    }

    .service-items {
        grid-template-columns: 1fr;
    }
	
	.portfolio-items{
		padding-left: 0;
	}
	
	.services-list{
		display: block;
	}
	
	.service-item{
		padding: 0 0 1rem 0;
	}
	
	.service-item-dark{
		padding: 0 0 1rem 0;
	}
	
	
	.service-item h5{
		text-align: center;
	}
	
	.service-item-dark h5{
		text-align: center;
	}
	
	.cta-button-dark{
		float: none;
		text-align: center;
		padding-top: 1rem;
	}
	
	.cta-button-div{
		text-align: center;
		padding-top: 1rem;
	}
	
	.img_10{
		display: none;
	}
	
	.img_12{
		display: none;
	}
	
	.img_15{
		display: none;
	}
	
	.img_10_xz{
		max-width: 100%; /* 图片最大宽度不超过容器 */
		height: auto;    /* 高度按比例自适应 */
		display: block;  /* 避免图片下方留白 */
		margin-bottom: 1rem;
	}
	
	.img_12_xz{
		max-width: 100%; /* 图片最大宽度不超过容器 */
		height: auto;    /* 高度按比例自适应 */
		display: block;  /* 避免图片下方留白 */
		margin-bottom: 1rem;
	}
	
	.img_15_xz{
		max-width: 100%; /* 图片最大宽度不超过容器 */
		height: auto;    /* 高度按比例自适应 */
		display: block;  /* 避免图片下方留白 */
		margin-bottom: 1rem;
	}
	
	.img_19{
		display: none;
	}
	
	.img_20{
		display: none;
	}
	
	.img_20_xz{
		max-width: 100%; /* 图片最大宽度不超过容器 */
		height: auto;    /* 高度按比例自适应 */
		display: block;  /* 避免图片下方留白 */
		margin-bottom: 1rem;
	}
	
	.img_16{
		max-width: 100%; /* 图片最大宽度不超过容器 */
		height: auto;    /* 高度按比例自适应 */
		display: block;  /* 避免图片下方留白 */
		margin-bottom: 1rem;
	}
	
	.img_17{
		max-width: 100%; /* 图片最大宽度不超过容器 */
		height: auto;    /* 高度按比例自适应 */
		display: block;  /* 避免图片下方留白 */
		margin-bottom: 1rem;
	}
	
	.img_23{
		display: none;
	}
	
	.img_25{
		max-width: 100%; /* 图片最大宽度不超过容器 */
		height: auto;    /* 高度按比例自适应 */
		display: block;  /* 避免图片下方留白 */
		margin-bottom: 1rem;
	}
	
	.img_24{
		max-width: 100%; /* 图片最大宽度不超过容器 */
		height: auto;    /* 高度按比例自适应 */
		display: block;  /* 避免图片下方留白 */
		margin-bottom: 1rem;
	}
	

	.container2{
		padding: 0px 1rem;
	}
	
	.portfolio_svg{
		max-width: 100%;
		height: auto;
	}
	
	.contact-svg{
		max-width: 100%;
		height: auto;
	}
	
	.contact-svg-div{
		display: none;
	}
	
	.contact-svg-div-a{
		display: block;
	}
	
	.contact-svg-a{
		font-size: 56px;
	}
	
	.contact-svg-b{
		font-size: 26px;
	}
	
	.policy-section{
		padding: 8rem 1rem 2rem 1rem;
	}
	
	.policy-svg{
		display: none;
	}
	
	.policy-svg-app{
		display: block;
		max-width: 100%;
		height: auto;
	}

	
	.container-p{
		padding-bottom: 2rem;
	}
	
	.nyc{
		text-align: center;
		padding-bottom: 1rem;
	}
	
	.portfolio-item{
		padding: 0 0 1rem 0;
	}
	
	.contact-section{
		padding: 2rem 0;
	}

	.pip{
		padding-left: 0;
	}
	
	.contact-section-a {
	    padding: 5.8rem 0 2rem 0;
	}
	
	.video-fallback {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	  display: none; /* 默认隐藏 */
	  z-index: -1;
	}
}
