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

/* 防止整个页面出现横向滚动条 */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

.carousel-container {
    width: 100%;
    /* 改为100%而不是100vw，避免可能的横向滚动 */
    max-width: 100% !important;
    /* 强制最大宽度为100% */
    position: relative;
    overflow: hidden;
    margin: 0;
    /* 移除可能的默认外边距 */
    padding: 0;
    /* 移除可能的默认内边距 */
}



/* 第一张蓝色背景 */
.carousel-slide:first-child {
    background-color: #ff9800;
}

/* 第二张橙色背景 */
.carousel-slide:last-child {
    background-color: #1e88e5;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: white;
    text-align: center;
    transition: opacity 0.6s ease;
}

.slide-content {
    max-width: 800px;
}

.slide-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s forwards 0.2s;
}

.slide-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s forwards 0.4s;
}

.slide-button {
    padding: 12px 30px;
    background-color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s forwards 0.6s;
}

/* 按钮颜色与背景匹配 */
.carousel-slide:first-child .slide-button {
    color: #ff9800;
}

.carousel-slide:last-child .slide-button {
    color: #1e88e5;
}

.slide-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(250, 249, 249, 0.15);
}

/* 指示器 */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: white;
    width: 30px;
    border-radius: 6px;
}

/* 入场动画 */
@keyframes fadeInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .carousel-track {
        height: 600px;
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .slide-description {
        font-size: 1rem;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
}

/* 轮播图容器 */
.carousel-container {
    width: 100%;
    max-width: 100% !important;
    position: relative;
    overflow: hidden;
    height: 600px;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 40px 80px;
    color: #333;
}

/* 第一张幻灯片背景（财务） */
.carousel-slide:nth-child(1) {
    background-image: url('../images/bg1.png');
    background-size: cover;
    /* 核心属性：图片等比例缩放以覆盖整个元素 */
    background-position: center;
    /* 图片居中显示 */
    background-repeat: no-repeat;
    /* 禁止图片重复平铺 */
}

/* 第二张幻灯片背景（销售） */
.carousel-slide:nth-child(2) {
    background-image: url('../images/bg2.png');
    background-size: cover;
    /* 核心属性：图片等比例缩放以覆盖整个元素 */
    background-position: center;
    /* 图片居中显示 */
    background-repeat: no-repeat;
    /* 禁止图片重复平铺 */
}

/* 内容容器 */
.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* 文字内容 - 左对齐 */
.hero-text {
    text-align: left;
    max-width: 500px;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.hero-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.4;
}

.highlight-blue {

    color: #1e88e5;
}

.highlight-orange {
    color: #ff7f27;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    color: #758296;
}

.tag {
    padding: 4px 0px;
    font-size: 14px;
    border-radius: 12px;
}

/* 销售幻灯片标签样式 */
.carousel-slide:nth-child(1) .tag {
    color: #758296;
}

/* 财务幻灯片标签样式 */
.carousel-slide:nth-child(2) .tag {
    color: #758296;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 10px 24px;
    border-radius: 99px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

/* 销售幻灯片按钮样式 */
.carousel-slide:nth-child(1) .btn-primary {

    background: #ff7f27;
    color: white;
}

.carousel-slide:nth-child(1) .btn-outline {
    background: transparent;
    border: 1px solid #ff7f27;
    color: #ff7f27;
}

.carousel-slide:nth-child(1) .btn-outline a{
    background: transparent;
    color: #ff7f27;
}


/* 财务幻灯片按钮样式 */
.carousel-slide:nth-child(2) .btn-primary {
    background: #1e88e5;
    color: white;
}

.carousel-slide:nth-child(2) .btn-outline {
    background: transparent;

    border: 1px solid #1e88e5;
    color: #1e88e5;
}

/* 右侧图片区域 */
.slide-image {
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
}

.slide-image img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

/* 指示器样式 */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* 激活状态的指示器 - 长条样式 */
.indicator.active {
    background-color: #fff;
    width: 30px;
    border-radius: 6px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .carousel-container {
        height: 500px;
    }

    .slide-content {
        flex-direction: column;
        justify-content: center;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .slide-image {
        max-width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 24px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

* Header */ .header {
    background: white;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
    float: left;
    margin-right: 32px;
}

.logo-nav {
    height: 100%;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-image: url('../images/logo.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color:
        #333333;
}

.nav {
    display: flex;
    gap: 32px;
    height: 100%;
    align-items: center;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    transition: color 0.3s;
    padding: 0 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
}

.nav-link:hover {
    color: #1f5fff;
}

.nav-link.has-dropdown::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s;
}

.nav-item:hover .nav-link.has-dropdown::after {
    transform: rotate(180deg);
}

/* 二级菜单 */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #1f5fff;
    border-radius: 8px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-actions a{
	color: white;
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s;
}


.hamburger {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: #333;
    transition: all 0.3s;
}

.mobile-menu-btn.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(2px, 5px);
}

.mobile-menu-btn.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, -6px);
}

/* 移动端菜单 */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 12px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: -1; 
}


.mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
	z-index: 1;
}

.mobile-nav {
    padding: 0 20px 20px 20px;
}

.mobile-nav-item {
    margin-bottom: 2px;
}

.mobile-nav-link {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link:hover {
    color: #1f5fff;
}

.mobile-dropdown {
    margin-top: 10px;
    padding-left: 16px;
}

.mobile-dropdown-item {
    display: block;
    color: #666;
    text-decoration: none;
    padding: 6px 0;
    font-size: 14px;
}

.mobile-dropdown-item:hover {
    color: #1f5fff;
}

.mobile-actions {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/ Buttons */ .btn {
    padding: 8px 24px;
    border-radius: 99px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background:
        #1f5fff;
    color: white;
}

.btn-primary:hover {
    background:
        #1a4fd9;
}

.btn-outline {
    background: transparent;
    border: 1px solid #1f5fff;
    color:
        #1f5fff;
}

.btn-outline:hover {
    background:
        #1f5fff;
    color: white;
}

.btn-orange {
    background:
        #ff7f27;
    color: white;
    padding: 12px 32px;
    border-radius: 24px;
}

.btn-orange:hover {
    background:
        #e6721f;
}

.btn-orange-outline {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #ff7f27;
    color:
        #ff7f27;
    padding: 12px 32px;
    border-radius: 24px;
}

.btn-orange-outline:hover {
    background:
        #ff7f27;
    color: white;
}
@media (max-width: 1250px) {
    .header-content {
        padding: 0 16px;
    }
}
/* 响应式设计 */
@media (max-width: 1032px) {
    .nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

 

    .logo {
        margin-right: 16px;
    }
}

/* Hero Section */
/* .hero {
    background: linear-gradient(135deg, #ffe3d0 0%, #ff7f27 100%);
    padding: 80px 0;
    overflow: hidden;
} */
.containerBackground {
    background-image: url('../images/ImageAsset20.png');
    height: 374px;
    background-size: cover;
    /* 核心属性：图片等比例缩放以覆盖整个元素 */
    background-position: center;
    /* 图片居中显示 */
    background-repeat: no-repeat;
    /* 禁止图片重复平铺 */
    align-items: center;
    display: flex;
    justify-content: center;
    color: #fff;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-subtitle {
    font-size: 18px;
    color: #333333;
    margin-bottom: 4px;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: #333333;
    line-height: 1.2;
    margin-bottom: 24px;
}



/* Product Showcase */
.product-showcase {
    background: #ffffff;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.brand-text {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
}

.brand-subtitle {
    font-size: 20px;
}

.section-description {
    color: #758296;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background-image: url(../images/ImageAsset29.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding: 0 20px;
}

.showcase-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-title {
    font-size: 28px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 32px;
}

.feature-list {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-title {
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 14px;
    color: #758296;
    line-height: 1.5;
}

/* Features Section */
.features-section {
    background-image: url(../images/Background.png);
    padding: 80px 0;
    background-size: cover;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 0 20px;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 32px;
}

.features-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 7px solid #FFE3D0;
    background: lightgray 50% / cover no-repeat, #FFF;
    box-shadow: 0 15px 21.8px 0 rgba(255, 127, 39, 0.10);
}

/* Main Content Section */
.main-content {
    background: linear-gradient(0deg, #FFF 0%, #F7F9FF 100%);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.main-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    color: #6c757d;
}

.content-grid {
    display: grid;
    flex-wrap: wrap;
    gap: 40px;
    background-image: url(../images/ImageAsset19.png);
    background-size: contain;
    background-repeat: no-repeat;
    grid-template-columns: 1fr 1fr;
    padding: 0 20px;
}

/* 左侧固定高度 */
.crm-interface {
    border-radius: 8px;

}

.crm-h2 {
    padding-right: 20%;
    font-size: 2em;
}

.interface-placeholder {
    text-align: center;
    color: #6c757d;
}

.interface-placeholder img {
    width: 100%;
    height: auto;
    box-shadow: 0 15px 20px 0 rgba(49, 122, 247, 0.10);
}

/* 右侧自适应剩余空间 */
.features {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    overflow: hidden;
    transition: all 0.3s ease;
    height: 60px;
    /* 默认高度（仅显示标题） */
    padding: 0 20px;
}

.feature-content {
    align-items: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: #007bff;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: #6c757d;
    max-height: 0;
    /* 默认隐藏描述 */
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.feature-link {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    max-height: 0;
    /* 默认隐藏链接 */
    overflow: hidden;
    transition: max-height 0.3s ease;
}

/* 鼠标悬停时的展开效果 */
.feature-card:hover {
    height: auto;
    /* 自动高度（展开内容） */
    /* 增加内边距 */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-text p {
    max-height: 100px;
    /* 显示描述 */
}

.feature-card:hover .feature-link {
    max-height: 50px;
    /* 显示链接 */
}

/* 鼠标离开时，仅展开第一个卡片，其他收起 */
.feature-card:not(:first-child):mouseleave {
    height: 60px;
    /* 恢复默认高度 */
    padding: 10px 20px;
    /* 恢复默认内边距 */
}

.feature-card:not(:first-child):mouseleave .feature-text p {
    max-height: 0;
    /* 隐藏描述 */
}

.feature-card:not(:first-child):mouseleave .feature-link {
    max-height: 0;
    /* 隐藏链接 */
}

/* 鼠标离开第一个卡片时，保持展开 */
.feature-card:first-child:mouseleave {
    height: auto;
    /* 保持自动高度 */
    padding: 20px;
    /* 保持内边距 */
}

.feature-card:first-child:mouseleave .feature-text p {
    max-height: 100px;
    /* 保持显示描述 */
}

.feature-card:first-child:mouseleave .feature-link {
    max-height: 50px;
    /* 保持显示链接 */
}
/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background-color: #F5F9FF;
    width: 100%;
    overflow: hidden;
}

.testimonials .container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: #333;
}

/* 滚动容器样式 */
.testimonials-scroll {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-grid {
    display: flex;
    gap: 24px;
    padding: 10px 0;
    width: max-content;
    box-sizing: border-box;
    /* 移除固定的animation属性，将通过JS动态设置 */
}

/* 移除原来的固定动画 */
/* @keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
} */

.testimonial-card {
    min-width: 280px;
    max-width: 300px;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.company-logo {
    width: 52px;
    height: 52px;
    background-color: #f0f0f0;
    border-radius: 8px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    background-size: contain;
    float: left;
    margin-right: 8px;
}

.consumer {
    margin-bottom: 20px;
}

.testimonial-card h3 {
    font-size: 18px;
    color: #333;
}

.role {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
}

.content {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 100px;
}

.testimonial-link {
    display: inline-block;
    color: #1e88e5;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.testimonial-link:hover {
    color: #1565c0;
}

/* 隐藏所有滚动条 */
.testimonials-scroll::-webkit-scrollbar {
    display: none;
}

/* 移动端适配 */
@media (max-width: 767px) {
    .testimonials h2 {
        font-size: 24px;
        padding: 0 20px;
    }

    .testimonial-card {
        min-width: 250px;
        max-width: 270px;
    }
}

/* CTA Section */
.cta {
    background-image: url(../images/Background-1.png);
    background-repeat: round;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.cta-button {
    background: white;
    color: #1f5fff;
    padding: 12px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f5f9ff;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #0e1421;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding: 0 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-brand .logo {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    margin-right: 8px;
}

.qr-code {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.8rem;
}

.footer-section h4 {
    color: #bcbfc8;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #8c99a6;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #474c66;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #8c99a6;
    padding-left: 20px;
    padding-right: 20px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        width: 100%;
        max-width: 400px;
        height: 250px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }



    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

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

    .footer-bottom-right {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-actions {
        gap: 8px;
    }

    .contact-email {
        display: none;
    }

    .hero-content,
    .showcase-content,
    .features-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .features-title {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }


}


.pdf-loading {
    background-image: url('../images/loading.gif');
	background-repeat: no-repeat;
    height: 350px;
	width: 350px;
}

.pdf-loaded{
	display:none;
}