@charset "utf-8";
/* CSS Document */

body {padding:0; margin: 0; font-size: 12px; font-family:"Microsoft Yahei";}
ul,ol{list-style:none; padding: 0; margin: 0;}
.clear{clear:both;}
a{text-decoration: none!important;}
.container{width:1200px; margin: 0 auto;}
.top{background-color: rgba(0, 0, 0, 0.7); height: 80px; width: 100%; position: fixed; top: 0; left: 0; z-index: 9999;} 

.topbox{display: flex; justify-content: space-between; align-items: center; width: 100%; height: 100%;}
/* 导航栏样式 */
.top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.navigation {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 40px;
    width: auto;
}

.navigation ul {
    display: flex;
    gap: 30px;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

.navigation ul li {
    display: flex;
    align-items: center;
    height: 100%;
    padding:0 10px;
}

.navigation ul li a {
    color: white;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 80px;
}

.navigation ul li a:hover {
    color: #26afb9;
}

/*导航end*/

/* 公司介绍部分 */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #26afb9;
}

.about-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #26afb9;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s;
    text-decoration: none;
    margin-top: 20px;
}

.about-btn:hover {
    background-color: #1a8b94;
    transform: translateY(-2px);
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 公司介绍部分结束 */

/* 产品信息部分 */
.products-section {
    padding: 80px 0;
    background-color: #fff;
}

.text-center {
    text-align: center;
}

.products-section .section-title {
    margin-bottom: 50px;
}

.products-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-image {
    height: 160px;
    overflow: hidden;
    padding:15px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
    transition: color 0.3s;
}

.product-card:hover .product-title {
    color: #26afb9;
}

/* 产品信息部分结束 */

/* 案例部分 */
.cases-section {
    padding: 80px 0;
    background-color: #fff;
}

.cases-section .section-title {
    margin-bottom: 50px;
}

.cases-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.case-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.case-image {
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-info {
    padding: 15px;
}

.case-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
    transition: color 0.3s;
}

.case-card:hover .case-title {
    color: #26afb9;
}

/* 案例部分结束 */
.owl-dots {
    text-align: center;

}

.owl-dots .owl-dot span {
    width: 10px;
    height: 7px;
    border-radius: 50px;
    background: #FFF;
    display: inline-block;
    opacity: .5;
    margin: 0 4px;
	transition:0.5s ease all;
}
.owl-dots .owl-dot.active span {
    opacity: 1;
    width: 20px;
	
}

#owl0 .owl-dots {
    display: inline-block;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

#owl0.owl-carousel .owl-nav .owl-next, #owl0.owl-carousel .owl-nav .owl-prev {
    opacity: 0;
}
#owl0.owl-carousel .owl-nav .owl-next img, #owl0.owl-carousel .owl-nav .owl-prev img{
    width: 40px;
}

#owl0.owl-carousel .owl-nav i {
    font-size: 40px;
    color: #fff;
    opacity: 0.5;
}
#owl0.owl-carousel .owl-nav .owl-next {
    right: 80px;
}
#owl0.owl-carousel .owl-nav .owl-prev {
    left: 80px;
}
#owl0.owl-carousel:hover .owl-nav .owl-next {
    right: 20px;
}
#owl0.owl-carousel:hover .owl-nav .owl-prev {
    left: 20px;
}
#owl0.owl-carousel .owl-nav .owl-next:hover i, #owl0.owl-carousel .owl-nav .owl-prev:hover i {
    opacity: 1
}
#owl0.owl-carousel:hover .owl-nav button {
    opacity: 1
}

.owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    display: block;
    position: absolute;
    outline: 0;
    top: 40%;
    transform: translateY(-50%);
    z-index: 6;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
/*OWL1*/

#owl1.owl-carousel .owl-nav i {
    font-size: 60px;
    color: #1c1563;
    opacity: 0.8;
}
#owl1.owl-carousel .owl-nav .owl-next {
    right: -20px;
	top: 45%;
}
#owl1.owl-carousel .owl-nav .owl-prev {
    left: -20px;
	top: 45%;
}

#owl1.owl-carousel .owl-nav .owl-next:hover i, #owl1.owl-carousel .owl-nav .owl-prev:hover i {
    opacity: 1
}
#owl1.owl-carousel:hover .owl-nav button {
    opacity: 1
}

.dropdown:hover .dropdown-menu {
    display: block;
}
.offcanvas.show:not(.hiding), .offcanvas.showing {
    transform: none;
}
.offcanvas.hiding, .offcanvas.show, .offcanvas.showing {
    visibility: visible;
}

.hotpro img{
    width: 100%;

}

/* 平滑滚动效果 */
html {
    scroll-behavior: smooth;
}

/* 页面头部样式 */
.page-header {
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #26afb9, #3498db, #9b59b6);
}

.page-title h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 16px;
    color: #bdc3c7;
}

.breadcrumb a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #26afb9;
}

.breadcrumb span {
    margin: 0 8px;
}

/* 导航活动状态 */
.navigation ul li a.active {
    color: #26afb9;
    position: relative;
}

.navigation ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #26afb9;
}

/* 关于我们页面样式 */
.culture-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.culture-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.culture-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #26afb9, #3498db);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.culture-icon .icon {
    font-size: 30px;
    color: #fff;
}

.culture-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.culture-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
}

.history-section {
    padding: 80px 0;
}

.timeline {
    margin-top: 50px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #e9ecef;
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #26afb9, #3498db);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    width: calc(50% - 50px);
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.timeline-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
}

.honors-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.honors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.honor-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.honor-item:hover {
    transform: translateY(-5px);
}

.honor-image {
    height: 200px;
    overflow: hidden;
}

.honor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.honor-item:hover .honor-image img {
    transform: scale(1.05);
}

.honor-item h3 {
    font-size: 16px;
    padding: 15px;
    text-align: center;
    margin: 0;
    color: #2c3e50;
}

/* 联系我们页面样式 */
.contact-info-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.contact-info-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #26afb9, #3498db);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon-large span {
    font-size: 36px;
    color: #fff;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-info-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 5px;
}

.contact-main-section {
    padding: 80px 0;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-form {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #26afb9;
    outline: none;
}

.submit-btn {
    background: linear-gradient(135deg, #26afb9, #3498db);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(38, 175, 185, 0.3);
}

.map-container {
    margin-bottom: 30px;
}

.map-placeholder {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.office-images h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.office-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.office-image {
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.office-image:hover img {
    transform: scale(1.05);
}

.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 16px;
    color: #2c3e50;
}

.faq-toggle {
    font-size: 20px;
    color: #26afb9;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
}

.faq-toggle::before {
    content: '+';
    display: block;
}

.faq-item.active .faq-toggle::before {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer {
    padding: 0 20px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 15px;
}

.faq-answer ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-answer li {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 5px;
}

/* 联系表单部分样式 */
.contact-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-form-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-form-info {
    flex: 1;
}

.contact-form-container {
    flex: 2;
}

.contact-form {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #26afb9;
    outline: none;
}

.submit-btn {
    background: linear-gradient(135deg, #26afb9, #3498db);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(38, 175, 185, 0.3);
}

/* 地图部分样式 */
.map-section {
    padding: 80px 0;
}

.map-container {
    margin-top: 50px;
}

.map-placeholder {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 30px;
    color: #fff;
}

.map-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.map-info p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.map-btn {
    background: #26afb9;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.map-btn:hover {
    background: #3498db;
}

/* 响应式调整 */
@media (max-width:991px) {
    .culture-grid,
    .honors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 60px;
    }
    
    .timeline-year {
        left: 30px;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
    
    .timeline-content {
        width: calc(100% - 30px);
        margin-left: 30px !important;
    }
}

@media (max-width:767px) {
    .culture-grid,
    .honors-grid {
        grid-template-columns: 1fr;
    }
    
    .office-gallery {
        grid-template-columns: 1fr;
    }
    
    .page-title h1 {
        font-size: 28px;
    }
}

/* 底部信息部分 */
.footer-section {
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
    color: #ecf0f1;
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #26afb9, #3498db, #9b59b6);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    width:100%;
}

.footer-about {
    max-width: 350px;
}
.footer-column{min-width: 220px;}
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 15px;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ecf0f1;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #26afb9;
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #26afb9;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #26afb9;
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #bdc3c7;
    font-size: 14px;
}

.contact-icon {
    color: #26afb9;
    margin-right: 15px;
    font-size: 16px;
    min-width: 20px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    color: #95a5a6;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #26afb9;
}

@media (max-width:991px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width:767px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .faq-item.active .faq-answer {
        max-height: 800px;
    }
}

@media (max-width:767px) {
	.container{width:100%;}
	
}