/* 全局样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
	color: #333;
	line-height: 1.6;
	background-color: #efefef;
}
.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}
.wrapper {
	width: 100%;
	max-width: 768px;
	margin: 0 auto;
	background: #fff;
}
/* 导航栏样式 */
header {
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}
.logo {
	font-size: 24px;
	font-weight: 700;
	color: #958262;
}
.logo a {
	background: url(../images/logo.png) no-repeat center center;
	background-size: 100% auto;
	width: 184px;
	height: 53px;
	text-indent: -99999999px;
	overflow: hidden;
	display: block;
}
.logo span {
	color: #333;
}
.nav-links {
	display: flex;
	list-style: none;
}
.nav-links li {
	margin-left: 30px;
}
.nav-links a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
	color: #958262;
}
/* 移动端菜单按钮 */
.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
}
.menu-toggle span {
	width: 25px;
	height: 3px;
	background-color: #333;
	margin: 3px 0;
	transition: 0.3s;
}
/* 轮播图样式 */
.slider {
	position: relative;
	height: 600px;
	overflow: hidden;
}
.slides {
	display: flex;
	width: 400%;
	height: 100%;
	transition: transform 0.8s ease;
}
.slide {
	width: 25%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
}
.slide-content {
	max-width: 800px;
	padding: 0 20px;
	z-index: 2;
}
.slide h1 {
	font-size: 48px;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.slide p {
	font-size: 20px;
	margin-bottom: 30px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.slide::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}
.slide-1 {
	background: url('../images/banner2.jpg') center/cover;
}
.slide-2 {
	background: url('../images/banner.jpg') center/cover;
}
.slide-3 {
	background: url('../images/banner3.jpg') center/cover;
}
/* 轮播图导航按钮 */
.slider-nav {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	z-index: 3;
}
.slider-dot {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	margin: 0 8px;
	cursor: pointer;
	transition: background 0.3s;
}
.slider-dot.active {
	background: white;
}
/* 轮播图箭头 */
.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 20px;
	cursor: pointer;
	z-index: 3;
	transition: background 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	display: none;
}
.slider-arrow:hover {
	background: rgba(255, 255, 255, 0.4);
}
.prev {
	left: 20px;
}
.next {
	right: 20px;
}
.btn {
	display: inline-block;
	background-color: #958262;
	color: white;
	padding: 12px 30px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
}
.btn:hover {
	background-color: #0d5bb9;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* 产品类别区域样式 */
.categories {
	padding: 80px 0;
	background: #fff;
}
.section-title {
	text-align: center;
	margin-bottom: 50px;
}
.section-title h2 {
	font-size: 36px;
	color: #333;
	margin-bottom: 15px;
}
.section-title p {
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}
.category-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}
.category-card {
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s, box-shadow 0.3s;
}
.category-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.category-img {
	height: 300px;
	background-size: cover;
	background-position: center;
}
.category-content {
	padding: 25px;
	padding-top: 10px;
}
.category-content h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: #333;
}
.category-content p {
	color: #666;
	margin-bottom: 20px;
}
/* 关于我们区域样式 */
.about {
	background-color: #958262;
	color: white;
	padding: 80px 0;
}
.about-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.about-text {
	flex: 1;
	padding-right: 50px;
}
.about-text h2 {
	font-size: 36px;
	margin-bottom: 20px;
}
.about-text p {
	margin-bottom: 20px;
}
.about-image {
	flex: 1;
	height: 400px;
	background: url('../images/about.jpg');
	background-size: cover;
	background-position: center;
	border-radius: 8px;
}
/* Why Choose Us 区域样式 */
.why-choose {
	padding: 80px 0;
	background-color: #fff;
}
.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 50px;
}
.feature {
	text-align: center;
	padding: 30px 20px;
	border-radius: 8px;
	transition: transform 0.3s, box-shadow 0.3s;
}
.feature:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.feature-icon {
	font-size: 40px;
	color: #958262;
	margin-bottom: 20px;
}
.feature h3 {
	font-size: 20px;
	margin-bottom: 15px;
	color: #333;
}
.feature p {
	color: #666;
}
/* Industries We Serve 区域样式 */
.industries {
	padding: 80px 0;
	background-color: #f8f9fa;
}
.industry-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 50px;
}
.industry-card {
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s, box-shadow 0.3s;
}
.industry-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.industry-img {
	height: 180px;
	background-size: cover;
	background-position: center;
}
.industry-content {
	padding: 25px;
	text-align: center;
}
.industry-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
	color: #333;
}
.industry-content p {
	color: #666;
}
/* 页脚样式 */
footer {
	background-color: #333;
	color: #fff;
	padding: 60px 0 20px;
}
.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}
.footer-column h3 {
	font-size: 18px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}
.footer-column h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background-color: #958262;
}
.footer-column ul {
	list-style: none;
}
.footer-column ul li {
	margin-bottom: 10px;
}
.footer-column a {
	color: #bbb;
	text-decoration: none;
	transition: color 0.3s;
}
.footer-column a:hover {
	color: #958262;
}
.copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #444;
	color: #bbb;
	font-size: 14px;
}
.botContacts {
	background: #958262;
	color: #fff;
	position: fixed;
	left: 0px;
	bottom: 0px;
	width: 100%;
	padding: 10px;
	display: flex;
	list-style: none;
}
.botContacts li {
	flex-grow: 1;
	flex-basis: 0;
	text-align: center;
}
.botContacts li i {
	width: 30px;
	margin: 0 auto;
	display: block;
}
.botContacts li i img {
	width: 30px;
	height: auto;
}
.botContacts li span {
	margin-top: -10px;
	display: block;
}
.botContacts a {
	color: #fff;
	text-decoration: none;
}
/* Page Header Styles */
.page-header {
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/banner2.jpg');
	background-size: cover;
	background-position: center;
	color: white;
	text-align: center;
	padding: 80px 0;
	margin-bottom: 50px;
}
.page-header h1 {
	font-size: 42px;
	margin-bottom: 15px;
}
.breadcrumb {
	display: flex;
	justify-content: center;
	list-style: none;
}
.breadcrumb li {
	margin: 0 10px;
	font-size: 16px;
}
.breadcrumb a {
	color: #ddd;
	text-decoration: none;
	transition: color 0.3s;
}
.breadcrumb a:hover {
	color: #958262;
}
.breadcrumb li:not(:last-child)::after {
	content: ">";
	margin-left: 10px;
	color: #ddd;
}
/* Product Introduction Section */
.product-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	margin-bottom: 60px;
	align-items: center;
}
.product-image {
	width: 100%;
	height: 400px;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.product-image.product-image2 {
	background: url('../images/img02.jpg') center/cover;
}
.product-image.product-image1 {
	background: url('../images/img01.jpg') center/cover;
}
.product-highlights {
	list-style: none;
	margin: 20px 0;
}
.product-highlights li {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}
.product-highlights li i {
	color: #958262;
	margin-right: 10px;
}
.contact-info {
	background-color: #f1f5f9;
	padding: 20px;
	border-radius: 8px;
	margin-top: 20px;
}
/* Product Features Section */
.product-features {
	margin-bottom: 60px;
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}
.feature-card {
	background-color: white;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}
.feature-card:hover {
	transform: translateY(-5px);
}
.feature-icon {
	font-size: 40px;
	color: #958262;
	margin-bottom: 15px;
}
.feature-card h3 {
	font-size: 20px;
	margin-bottom: 15px;
	color: #333;
}
/* Product Specifications Section */
.product-specs {
	margin-bottom: 60px;
}
.spec-tabs {
	display: flex;
	border-bottom: 1px solid #e9ecef;
	margin-bottom: 30px;
}
.spec-tab {
	background: none;
	border: none;
	padding: 15px 25px;
	font-size: 16px;
	font-weight: 600;
	color: #666;
	cursor: pointer;
	transition: all 0.3s;
	position: relative;
}
.spec-tab.active {
	color: #958262;
}
.spec-tab.active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #958262;
}
.spec-content {
	display: none;
}
.spec-content.active {
	display: block;
}
.spec-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}
.spec-table th, .spec-table td {
	padding: 15px;
	text-align: left;
	border-bottom: 1px solid #e9ecef;
}
.spec-table th {
	background-color: #f8f9fa;
	font-weight: 600;
	color: #333;
}
.spec-table tr:hover {
	background-color: #f8f9fa;
}
/* Model Comparison Section */
.model-comparison {
	margin-bottom: 60px;
}
.comparison-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	border-radius: 8px;
	overflow: hidden;
}
.comparison-table th, .comparison-table td {
	padding: 15px;
	text-align: center;
	border: 1px solid #e9ecef;
}
.comparison-table th {
	background-color: #958262;
	color: white;
	font-weight: 600;
}
.comparison-table tr:nth-child(even) {
	background-color: #f8f9fa;
}
/* Other Features Section */
.other-features {
	background-color: white;
	padding: 50px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	margin-bottom: 60px;
}
.other-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 30px;
}
.other-feature-item {
	display: flex;
	align-items: flex-start;
}
.other-feature-icon {
	color: #958262;
	margin-right: 15px;
	font-size: 20px;
	margin-top: 3px;
}
/* Footer Styles */
footer {
	background-color: #333;
	color: #fff;
	padding: 60px 0 20px;
}
.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}
.footer-column h3 {
	font-size: 18px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}
.footer-column h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background-color: #958262;
}
.footer-column ul {
	list-style: none;
}
.footer-column ul li {
	margin-bottom: 10px;
}
.footer-column a {
	color: #bbb;
	text-decoration: none;
	transition: color 0.3s;
}
.footer-column a:hover {
	color: #958262;
}
.copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #444;
	color: #bbb;
	font-size: 14px;
}
        
        /* Responsive Design */
        @media (max-width: 768px) {
.page-header h1 {
	font-size: 32px;
}
.product-intro {
	grid-template-columns: 1fr;
	gap: 30px;
}
.spec-tabs {
	flex-direction: column;
}
.spec-tab {
	width: 100%;
	text-align: left;
}
.comparison-table {
	display: block;
	overflow-x: auto;
}
.other-features {
	padding: 30px 20px;
}
}
.btn {
	display: inline-block;
	background-color: #958262;
	color: white;
	padding: 12px 25px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
	font-size: 16px;
}
.btn:hover {
	background-color: #0d5bb9;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.section-title {
	text-align: center;
	margin-bottom: 40px;
}
.section-title h2 {
	font-size: 32px;
	color: #333;
	margin-bottom: 15px;
}
.section-title p {
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}
        
        /* 响应式设计 */
        @media (max-width: 768px) {
.logo a {
	width: 115px;
	height: 33px;
}
.menu-toggle {
	display: flex;
}
.nav-links {
	position: fixed;
	top: 74px;
	left: 0;
	width: 100%;
	background-color: #fff;
	flex-direction: column;
	align-items: center;
	padding: 20px 0;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	transform: translateY(-150%);
	transition: transform 0.5s ease;
	z-index: 999;
}
.nav-links.active {
	transform: translateY(0);
}
.nav-links li {
	margin: 15px 0;
}
/* 菜单动画效果 */
.menu-toggle.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}
.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}
.slider {
	height: 500px;
}
.slide h1 {
	font-size: 36px;
}
.slide p {
	font-size: 18px;
}
.about-content {
	flex-direction: column;
}
.about-text {
	padding-right: 0;
	margin-bottom: 30px;
}
.about-image {
	width: 100%;
}
.slider-arrow {
	width: 40px;
	height: 40px;
	font-size: 16px;
}
}
 @media (max-width: 480px) {
.slider {
	height: 400px;
}
.slide h1 {
	font-size: 28px;
}
.slide p {
	font-size: 16px;
}
}
/* Page Header Styles */

.page-header h1 {
	font-size: 42px;
	margin-bottom: 15px;
}
.breadcrumb {
	display: flex;
	justify-content: center;
	list-style: none;
}
.breadcrumb li {
	margin: 0 10px;
	font-size: 16px;
}
.breadcrumb a {
	color: #ddd;
	text-decoration: none;
	transition: color 0.3s;
}
.breadcrumb a:hover {
	color: #958262;
}
.breadcrumb li:not(:last-child)::after {
	content: ">";
	margin-left: 10px;
	color: #ddd;
}
/* Product Introduction Section */
.product-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	margin-bottom: 60px;
	align-items: center;
}
.product-highlights {
	list-style: none;
	margin: 20px 0;
}
.product-highlights li {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}
.product-highlights li i {
	color: #958262;
	margin-right: 10px;
}
.contact-info {
	background-color: #f1f5f9;
	padding: 20px;
	border-radius: 8px;
	margin-top: 20px;
}
/* Product Features Section */
.product-features {
	margin-bottom: 60px;
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}
.feature-card {
	background-color: white;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}
.feature-card:hover {
	transform: translateY(-5px);
}
.feature-icon {
	font-size: 40px;
	color: #958262;
	margin-bottom: 15px;
}
.feature-card h3 {
	font-size: 20px;
	margin-bottom: 15px;
	color: #333;
}
/* Product Specifications Section */
.product-specs {
	margin-bottom: 60px;
}
.spec-tabs {
	display: flex;
	border-bottom: 1px solid #e9ecef;
	margin-bottom: 30px;
}
.spec-tab {
	background: none;
	border: none;
	padding: 15px 25px;
	font-size: 16px;
	font-weight: 600;
	color: #666;
	cursor: pointer;
	transition: all 0.3s;
	position: relative;
}
.spec-tab.active {
	color: #958262;
}
.spec-tab.active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #958262;
}
.spec-content {
	display: none;
}
.spec-content.active {
	display: block;
}
.spec-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}
.spec-table th, .spec-table td {
	padding: 15px;
	text-align: left;
	border-bottom: 1px solid #e9ecef;
}
.spec-table th {
	background-color: #f8f9fa;
	font-weight: 600;
	color: #333;
}
.spec-table tr:hover {
	background-color: #f8f9fa;
}
/* Model Comparison Section */
.model-comparison {
	margin-bottom: 60px;
}
.comparison-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	border-radius: 8px;
	overflow: hidden;
}
.comparison-table th, .comparison-table td {
	padding: 15px;
	text-align: center;
	border: 1px solid #e9ecef;
}
.comparison-table th {
	background-color: #958262;
	color: white;
	font-weight: 600;
}
.comparison-table tr:nth-child(even) {
	background-color: #f8f9fa;
}
/* Other Features Section */
.other-features {
	background-color: white;
	padding: 50px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	margin-bottom: 60px;
}
.other-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 30px;
}
.other-feature-item {
	display: flex;
	align-items: flex-start;
}
.other-feature-icon {
	color: #958262;
	margin-right: 15px;
	font-size: 20px;
	margin-top: 3px;
}
/* Footer Styles */
footer {
	background-color: #333;
	color: #fff;
	padding: 60px 0 20px;
}
.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}
.footer-column h3 {
	font-size: 18px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}
.footer-column h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background-color: #958262;
}
.footer-column ul {
	list-style: none;
}
.footer-column ul li {
	margin-bottom: 10px;
}
.footer-column a {
	color: #bbb;
	text-decoration: none;
	transition: color 0.3s;
}
.footer-column a:hover {
	color: #958262;
}
.copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #444;
	color: #bbb;
	font-size: 14px;
}
        
        /* Responsive Design */
        @media (max-width: 768px) {
.page-header h1 {
	font-size: 32px;
}
.product-intro {
	grid-template-columns: 1fr;
	gap: 30px;
}
.spec-tabs {
	flex-direction: column;
}
.spec-tab {
	width: 100%;
	text-align: left;
}
.comparison-table {
	display: block;
	overflow-x: auto;
}
.other-features {
	padding: 30px 20px;
}
}
.btn {
	display: inline-block;
	background-color: #958262;
	color: white;
	padding: 12px 25px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
	font-size: 16px;
}
.btn:hover {
	background-color: #0d5bb9;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.section-title {
	text-align: center;
	margin-bottom: 40px;
}
.section-title h2 {
	font-size: 32px;
	color: #333;
	margin-bottom: 15px;
}
.section-title p {
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}
/* Product Introduction Section */
.product-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	margin-bottom: 60px;
	align-items: center;
}
.product-image {
	width: 100%;
	height: 400px;
	background: url('https://images.unsplash.com/photo-1559056199-641a0ac8b55e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.product-highlights {
	list-style: none;
	margin: 20px 0;
}
.product-highlights li {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}
.product-highlights li i {
	color: #958262;
	margin-right: 10px;
}
.contact-info {
	background-color: #f1f5f9;
	padding: 20px;
	border-radius: 8px;
	margin-top: 20px;
}
/* Product Features Section */
.product-features {
	margin-bottom: 60px;
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}
.feature-card {
	background-color: white;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}
.feature-card:hover {
	transform: translateY(-5px);
}
.feature-icon {
	font-size: 40px;
	color: #958262;
	margin-bottom: 15px;
}
.feature-card h3 {
	font-size: 20px;
	margin-bottom: 15px;
	color: #333;
}
/* Product Specifications Section */
.product-specs {
	margin-bottom: 60px;
}
.spec-tabs {
	display: flex;
	border-bottom: 1px solid #e9ecef;
	margin-bottom: 30px;
}
.spec-tab {
	background: none;
	border: none;
	padding: 15px 25px;
	font-size: 16px;
	font-weight: 600;
	color: #666;
	cursor: pointer;
	transition: all 0.3s;
	position: relative;
}
.spec-tab.active {
	color: #958262;
}
.spec-tab.active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #958262;
}
.spec-content {
	display: none;
}
.spec-content.active {
	display: block;
}
.spec-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}
.spec-table th, .spec-table td {
	padding: 15px;
	text-align: left;
	border-bottom: 1px solid #e9ecef;
}
.spec-table th {
	background-color: #f8f9fa;
	font-weight: 600;
	color: #333;
}
.spec-table tr:hover {
	background-color: #f8f9fa;
}
/* Other Features Section */
.other-features {
	background-color: white;
	padding: 50px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	margin-bottom: 60px;
}
.other-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 30px;
}
.other-feature-item {
	display: flex;
	align-items: flex-start;
}
.other-feature-icon {
	color: #958262;
	margin-right: 15px;
	font-size: 20px;
	margin-top: 3px;
}
/* Footer Styles */
footer {
	background-color: #333;
	color: #fff;
	padding: 60px 0 20px;
}
.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}
.footer-column h3 {
	font-size: 18px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}
.footer-column h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background-color: #958262;
}
.footer-column ul {
	list-style: none;
}
.footer-column ul li {
	margin-bottom: 10px;
}
.footer-column a {
	color: #bbb;
	text-decoration: none;
	transition: color 0.3s;
}
.footer-column a:hover {
	color: #958262;
}
.copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #444;
	color: #bbb;
	font-size: 14px;
}
        
        /* Responsive Design */
        @media (max-width: 768px) {
.nav-links {
	display: none;
}
.page-header h1 {
	font-size: 32px;
}
.product-intro {
	grid-template-columns: 1fr;
	gap: 30px;
}
.spec-tabs {
	flex-direction: column;
}
.spec-tab {
	width: 100%;
	text-align: left;
}
.other-features {
	padding: 30px 20px;
}
}
.btn {
	display: inline-block;
	background-color: #958262;
	color: white;
	padding: 12px 25px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
	font-size: 16px;
}
.btn:hover {
	background-color: #0d5bb9;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.section-title {
	text-align: center;
	margin-bottom: 40px;
}
.section-title h2 {
	font-size: 32px;
	color: #333;
	margin-bottom: 15px;
}
.section-title p {
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}
