/* ==============================================
   全局样式重置与基础配置
   ============================================== */
/* 全局字体、颜色、边距重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333333;
    line-height: 1.6;
}

/* 定义主题色变量，方便统一修改 */
:root {
    --teal-primary: #538686;       /* 主青绿色（用于背景、按钮） */
    --teal-dark: #235555;         /* 深青绿色（用于强调、深色背景） */
    --teal-light: #b8c9c9;        /* 浅青绿色（用于底部区域） */
    --orange-primary: #ff8a00;    /* 主橙色（用于按钮、强调线） */
    --gray-light: #dddddd;        /* 浅灰色（用于产品模块背景） */
    --white: #ffffff;             /* 白色 */
    --black: #000000;             /* 黑色 */
}

/* ==============================================
   导航栏样式
   ============================================== */
.navbar {
    padding: 0.8rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    background-color: #B9C7C5 !important; /* 你要的背景色 */
}

.navbar-brand img {
    max-height: 40px;
}

.nav-link {
    color: #333 !important;
    font-size: 0.9rem;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--teal-primary) !important;
}

/* ==============================================
   CTA模块样式
   ============================================== */
.bg-light-teal {
    background-color: var(--teal-light);
}

.cta-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--teal-dark);
}

.btn-dark-teal {
    background-color: var(--teal-dark);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.btn-dark-teal:hover {
    background-color: #1a4444;
    color: var(--white);
    text-decoration: none;
}

/* ==============================================
   页脚样式
   ============================================== */
.footer-section {
    border-top: 1px solid #ccc;
}

.copyright {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

.footer-link {
    font-size: 0.8rem;
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-link:hover {
    color: var(--teal-primary);
    text-decoration: none;
}

/* ==============================================
   响应式适配（Bootstrap 4 补充）
   ============================================== */
@media (max-width: 991.98px) {
    .banner-section {
        height: auto;
        padding: 3rem 0;
    }
    .banner-section::after {
        display: none;
    }
    .banner-img {
        position: static;
        width: 100%;
        height: 300px;
        margin-top: 2rem;
    }
    .process-container {
        flex-direction: column;
    }
    .process-arrow {
        transform: rotate(90deg);
        margin: 1rem 0 !important;
    }
    .cta-section .text-right {
        text-align: left !important;
        margin-top: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .banner-content h1 {
        font-size: 1.5rem;
    }
    .about-text {
        font-size: 0.95rem;
    }
}