/* 关于我们页面样式 */
body .site-content,
body #content,
body .entry-content,
body .page,
body .ast-container,
body .page-content {
    overflow: visible !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* 确保页面容器适应全宽 */
body .ast-container {
    max-width: 100vw !important;
    padding: 0 !important;
}

/* 移除任何边距和内边距 */
#primary {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
}

/* 页面内容容器 */
.page-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Banner区域样式 */
.about-us-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.about-us-banner .banner-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* 面包屑导航样式 */
.breadcrumb-section {
    width: 100%;
    background-color: #f5f5f5;
    padding: 15px 0;
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

#breadcrumbs {
    margin: 0;
    font-size: 14px;
    color: #666;
}

#breadcrumbs a {
    color: #333;
    text-decoration: none;
}

#breadcrumbs a:hover {
    color: #883E74;
}

#breadcrumbs .current {
    color: #883E74;
    font-weight: 500;
}

/* 关于我们内容区域样式 */
.about-us-section {
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
}

.about-us-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-us-content-wrapper {
    display: flex;
    flex-direction: column;
    /* gap: 40px; */
}

/* 左侧文字内容 */
.about-us-text-column {
    flex: 1;
    padding-right: 0;
}

.about-us-title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 25px;
    position: relative;
}

.about-us-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #883E74;
}

.about-us-description {
    font-size: 16px;
    line-height: 1.7;
    color: #5e6282;
    margin-bottom: 20px;
}

/* 右侧图片 */
.about-us-image-column {
    flex: 1;
    padding-top: 20px;
}

.about-us-image-container {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-us-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
    opacity: 0.9;
}

.about-us-image.loaded {
    opacity: 1;
}

.about-us-image-container:hover .about-us-image {
    transform: scale(1.03);
}

/* 图片加载错误提示 */
.image-error {
    padding: 15px;
    background-color: #f8f8f8;
    color: #666;
    text-align: center;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 14px;
}

/* 响应式样式 */
@media (min-width: 768px) {
    .about-us-content-wrapper {
        flex-direction: row;
    }

    .about-us-text-column {
        padding-right: 40px;
    }

    .about-us-title {
        font-size: 42px;
    }
    
    /* 确保图片容器有合适的间距 */
    .about-us-image-container {
        margin-top: 0;
    }
}

/* 平板设备的特殊调整 */
@media (min-width: 768px) and (max-width: 991px) {
    .about-us-content-wrapper {
        gap: 30px;
    }
    
    .about-us-text-column {
        padding-right: 20px;
    }
}

@media (min-width: 1024px) {
    .about-us-section {
        padding: 80px 0;
    }

    .about-us-title {
        font-size: 48px;
    }

    .about-us-description {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .about-us-section {
        padding: 40px 0;
    }

    .about-us-title {
        font-size: 32px;
    }

    .about-us-description {
        font-size: 15px;
    }
    
    .about-us-image-container {
        margin-top: 20px;
    }
}

/* 适配超小屏幕设备 */
@media (max-width: 480px) {
    .about-us-section {
        padding: 30px 0;
    }

    .about-us-container {
        padding: 0 15px;
    }

    .about-us-title {
        font-size: 28px;
    }

    .about-us-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .about-us-image-container {
        margin-top: 15px;
        border-radius: 6px;
    }
}

/* 我们的优势区域样式 */
.our-advantages-section {
    width: 100%;
    padding: 60px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.our-advantages-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.our-advantages-header {
    text-align: center;
    margin-bottom: 50px;
}

.our-advantages-title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.our-advantages-divider {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.our-advantages-divider:before,
.our-advantages-divider:after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    background-color: #e0e0e0;
    width: 35%;
}

.our-advantages-divider:before {
    left: 0;
}

.our-advantages-divider:after {
    right: 0;
}

.our-advantages-divider i {
    color: #883E74;
    font-size: 18px;
    position: relative;
    background: #f8f9fa;
    padding: 0 15px;
    z-index: 1;
}

/* 优势内容布局 */
.our-advantages-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* 左右两侧优势项目 */
.advantages-left,
.advantages-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* 优势项目样式 */
.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.advantage-number {
    font-size: 60px;
    font-weight: 700;
    color: #1e73be;
    line-height: 1;
    flex-shrink: 0;
    font-family: 'Arial', sans-serif;
    position: relative;
}

.advantage-number:after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: #1e73be;
    transform: translateY(15px);
}

.advantage-content {
    flex: 1;
}

.advantage-title {
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.chinese-text {
    display: block;
    font-size: 18px;
    color: #666666;
    margin-top: 5px;
}

.advantage-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

/* 中间轮播图样式 */
.advantages-carousel {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* 1:1 比例 */
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: none;
}

.carousel-slide.active {
    opacity: 1;
    display: block;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 轮播控制 */
.carousel-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: #ffffff;
    width: 25px;
    border-radius: 5px;
}

/* 平板及以上的响应式布局 */
@media (min-width: 992px) {
    .our-advantages-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
    }
    
    .advantages-left,
    .advantages-right {
        width: 30%;
    }
    
    .advantages-carousel {
        width: 40%;
    }
}

/* 中等设备的响应式布局 */
@media (min-width: 768px) and (max-width: 991px) {
    .our-advantages-content {
        flex-direction: column;
    }
    
    .advantages-left,
    .advantages-right {
        width: 100%;
    }
    
    .advantages-carousel {
        width: 70%;
        order: -1; /* 轮播图放在最上面 */
        margin-bottom: 20px;
    }
    
    .advantage-item {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* 移动端响应式布局微调 */
@media (max-width: 767px) {
    .our-advantages-section {
        padding: 40px 0;
    }
    
    .our-advantages-title {
        font-size: 28px;
    }
    
    .our-advantages-content {
        gap: 30px;
    }
    
    .advantages-carousel {
        order: -1; /* 轮播图放在最上面 */
        margin-bottom: 10px;
    }
    
    .advantage-number {
        font-size: 50px;
    }
    
    .advantage-number:after {
        width: 25px;
        bottom: 10px;
    }
    
    .advantage-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .chinese-text {
        font-size: 16px;
    }
    
    .advantage-description {
        font-size: 14px;
    }
}

/* 超小屏幕的额外调整 */
@media (max-width: 480px) {
    .our-advantages-header {
        margin-bottom: 30px;
    }
    
    .our-advantages-title {
        font-size: 24px;
    }
    
    .our-advantages-divider i {
        font-size: 16px;
    }
    
    .advantage-item {
        gap: 15px;
    }
    
    .advantage-number {
        font-size: 40px;
    }
    
    .advantage-number:after {
        width: 20px;
        bottom: 8px;
    }
    
    .advantage-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .chinese-text {
        font-size: 15px;
        margin-top: 3px;
    }
    
    .advantage-description {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .carousel-container {
        border-radius: 8px;
    }
}

/* 极小屏幕处理 */
@media (max-width: 360px) {
    .advantage-number {
        font-size: 36px;
    }
    
    .advantage-title {
        font-size: 16px;
    }
    
    .chinese-text {
        font-size: 14px;
    }
    
    .advantage-description {
        font-size: 12px;
    }
}

/* 展会信息区域样式 */
.exhibition-section {
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
}

.exhibition-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.exhibition-header {
    text-align: center;
    margin-bottom: 50px;
}

.exhibition-title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.exhibition-divider {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.exhibition-divider:before,
.exhibition-divider:after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    background-color: #e0e0e0;
    width: 35%;
}

.exhibition-divider:before {
    left: 0;
}

.exhibition-divider:after {
    right: 0;
}

.exhibition-divider i {
    color: #883E74;
    font-size: 18px;
    position: relative;
    background: #ffffff;
    padding: 0 15px;
    z-index: 1;
}

/* 时间轴导航 */
.timeline-navigation {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
    padding: 0 20px;
    margin-top: 50px;
}

.timeline-line {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.timeline-date {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-dot {
    background-color: #883E74;
    border-color: #883E74;
    transform: scale(1.2);
}

.timeline-item.active .timeline-date {
    color: #666;
    font-weight: 600;
}

.timeline-item:hover .timeline-dot {
    border-color: #666;
}

.timeline-item:hover .timeline-date {
    color: #666;
}

/* 展会内容区域 */
.exhibition-details {
    position: relative;
    min-height: 300px;
}

/* 优化展览部分布局 */
.exhibition-box {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.exhibition-box.active {
    display: flex;
    opacity: 1;
    position: relative;
    flex-direction: row;
    align-items: stretch;
    gap: 30px;
    padding: 30px;
}

.exhibition-info {
    flex: 1;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exhibition-image {
    flex: 1;
    overflow: hidden;
    position: relative;
    max-width: 50%;
}

.exhibition-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.exhibition-img:hover {
    transform: scale(1.03);
}

.exhibition-name {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
    border-bottom: 2px solid #0dcaf0;
    padding-bottom: 10px;
    display: inline-block;
}

.exhibition-location {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666666;
}

.exhibition-name i {
    color: #0dcaf0;
    margin-right: 8px;
}

.exhibition-description {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* 响应式布局 */
@media (max-width: 992px) {
    .exhibition-box.active {
        flex-direction: column;
    }
    
    .exhibition-image {
        max-width: 100%;
        height: 350px;
        order: -1;
    }
    
    .exhibition-info {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .exhibition-section {
        padding: 40px 0;
    }
    
    .exhibition-title {
        font-size: 28px;
    }
    
    .timeline-navigation {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .timeline-item {
        margin-right: 40px;
        flex-shrink: 0;
    }
    
    .timeline-line {
        top: 15px;
    }
    
    .exhibition-name {
        font-size: 20px;
    }
    
    .exhibition-description {
        font-size: 14px;
    }
}

/* 公司证书区域样式 */
.certificates-section {
    width: 100%;
    padding: 60px 0;
    background-color: #f8f9fa;
}

.certificates-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.certificates-header {
    text-align: center;
    margin-bottom: 50px;
}

.certificates-title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 10px;
}

.certificates-description {
    font-size: 16px;
    color: #666666;
    margin-bottom: 15px;
}

.certificates-divider {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.certificates-divider:before,
.certificates-divider:after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    background-color: #e0e0e0;
    width: 35%;
}

.certificates-divider:before {
    left: 0;
}

.certificates-divider:after {
    right: 0;
}

.certificates-divider i {
    color: #883E74;
    font-size: 18px;
    position: relative;
    background: #f8f9fa;
    padding: 0 15px;
    z-index: 1;
}

/* 证书轮播样式 */
.cert-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
}

.cert-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    padding: 10px 0;
}

.cert-card {
    flex: 0 0 calc(25% - 15px); /* 一排显示4个，考虑间距 */
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.cert-image-wrapper {
    width: 100%;
    height: 0;
    padding-bottom: 132.6%; /* 460:610 比例 */
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
}

.cert-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.cert-card:hover .cert-image {
    transform: scale(1.05);
}

.cert-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cert-name {
    font-size: 18px !important;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.cert-description {
    font-size: 14px;
    color: #666666;
}

/* 证书容器样式调整 */
.cert-carousel-container {
    padding: 0 15px;
}

/* 响应式布局 */
@media (max-width: 1200px) {
    .cert-card {
        flex: 0 0 calc(33.33% - 13.33px); /* 一排显示3个 */
    }
    
    .cert-info {
        padding: 15px;
    }
    
    .cert-name {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .cert-card {
        flex: 0 0 calc(50% - 10px); /* 一排显示2个 */
    }
}

@media (max-width: 576px) {
    .cert-carousel-container {
        padding: 0 15px;
    }
    
    .cert-card {
        flex: 0 0 100%; /* 一排显示1个 */
    }
    
    .cert-image-wrapper {
        padding-bottom: 132.6%; /* 保持与桌面版相同比例 */
    }
}

@media (max-width: 767px) {
    .certificates-section {
        padding: 40px 0;
    }
    
    .certificates-title {
        font-size: 28px;
    }
    
    .certificates-description {
        font-size: 15px;
    }
    
    .cert-carousel-wrapper {
        min-height: 350px;
    }
    
    .cert-name {
        font-size: 18px;
    }
    
    .cert-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .certificates-header {
        margin-bottom: 30px;
    }
    
    .certificates-title {
        font-size: 24px;
    }
    
    .cert-carousel-wrapper {
        min-height: 300px;
    }
    
    .cert-info {
        padding: 15px;
    }
    
    .cert-name {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .cert-description {
        font-size: 12px;
    }
    
    .cert-prev-btn,
    .cert-next-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
}

/* Contact Form Section */
.contact-form-section {
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-form-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-form-title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.contact-form-description {
    font-size: 18px;
    color: #666666;
    margin-bottom: 15px;
}

.contact-form-divider {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.contact-form-divider:before,
.contact-form-divider:after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    background-color: #e0e0e0;
    width: 35%;
}

.contact-form-divider:before {
    left: 0;
}

.contact-form-divider:after {
    right: 0;
}

.contact-form-divider i {
    color: #883E74;
    font-size: 18px;
    position: relative;
    background: #ffffff;
    padding: 0 15px;
    z-index: 1;
}

.contact-form-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-text-column {
    flex: 1;
    min-width: 300px;
}

.contact-form-column {
    flex: 1;
    min-width: 300px;
}

.contact-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333333;
    position: relative;
}

.contact-subtitle:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #883E74;
}

.contact-description {
    font-size: 16px;
    line-height: 1.7;
    color: #5e6282;
    margin-bottom: 20px;
    margin-top: 20px;
}

.contact-info {
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info-item i {
    font-size: 18px;
    color: #883E74;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.contact-info-item span {
    font-size: 16px;
    color: #5e6282;
}

/* Fluent Form styling overrides */
.contact-form-column .fluentform {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px dashed #ccc;
}

.contact-form-column .ff-el-group {
    margin-bottom: 20px;
}

.contact-form-column .ff-el-input--label {
    margin-bottom: 8px;
}

.contact-form-column .ff-el-form-control {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form-column .ff-el-form-control:focus {
    border-color: #883E74;
    box-shadow: 0 0 0 2px rgba(136, 62, 116, 0.1);
}

.contact-form-column .ff-btn {
    background-color: #883E74;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-column .ff-btn:hover {
    background-color: #6d3159;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(136, 62, 116, 0.2);
}

/* Responsive styles */
@media (max-width: 992px) {
    .contact-form-content {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 40px 0;
    }
    
    .contact-form-title {
        font-size: 28px;
    }
    
    .contact-form-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-text-column,
    .contact-form-column {
        width: 100%;
    }
    
    .contact-subtitle {
        font-size: 22px;
    }
    
    .contact-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 30px 0;
    }
    
    .contact-form-header {
        margin-bottom: 30px;
    }
    
    .contact-form-title {
        font-size: 24px;
    }
    
    .contact-form-description {
        font-size: 15px;
    }
    
    .contact-subtitle {
        font-size: 20px;
    }
    
    .contact-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .contact-info-item {
        margin-bottom: 12px;
    }
    
    .contact-info-item i {
        font-size: 16px;
    }
    
    .contact-info-item span {
        font-size: 14px;
    }
    
    .contact-form-column .fluentform {
        padding: 20px;
    }
} 