/* 行业动态页面专用样式 */

/* 通用样式 */
.key-data {
    font-weight: bold;
    color: rgb(55, 137, 239);
}

/* 摘要框 */
.summary-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid rgb(55, 137, 239);
}
.summary-box h3 {
    color: rgb(55, 137, 239);
    margin-bottom: 15px;
}

/* 方案表格 */
.scheme-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}
.scheme-table th, .scheme-table td {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: left;
    line-height: 1.6;
}
.scheme-table th {
    background-color: rgb(55, 137, 239);
    color: white;
    font-weight: bold;
    font-size: 14px;
}
.scheme-table tr:nth-child(even) {
    background-color: #f8f9fa;
}
.scheme-table tr:hover {
    background-color: #e3f2fd;
    transition: background-color 0.3s ease;
}

/* 联系框 */
.contact-box {
    background: linear-gradient(135deg, rgb(55, 137, 239) 0%, rgb(37, 115, 214) 100%);
    color: white;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(55, 137, 239, 0.3);
}
.contact-box h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: white !important;
}
.contact-box p {
    margin-bottom: 10px;
    color: white !important;
}
.contact-box a {
    color: white !important;
    text-decoration: underline;
}
.contact-box strong {
    color: white !important;
}

/* 英雄区 */
.hero-section {
    background: linear-gradient(135deg, rgb(55, 137, 239) 0%, rgb(37, 115, 214) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero-section h1 {
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: bold;
    line-height: 1.3;
}
.hero-section p {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
    opacity: 0.95;
}

/* 特色卡片 */
.feature-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 35px;
    margin-bottom: 35px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.feature-card h3 {
    color: rgb(55, 137, 239);
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}
.feature-card h4 {
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}
.feature-card .subsection:first-child h4 {
    margin-top: 0;
}
.feature-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}
.feature-card ul, .feature-card ol {
    margin-bottom: 20px;
    padding-left: 25px;
}
.feature-card li {
    margin-bottom: 12px;
    line-height: 1.7;
}
.feature-card .subsection {
    margin-bottom: 30px;
}
.feature-card .subsection:last-child {
    margin-bottom: 0;
}

/* 步骤列表样式 */
.step-list {
    margin-top: 20px;
}
.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.step-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateX(5px);
}
.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgb(55, 137, 239);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 16px;
    margin-right: 15px;
    flex-shrink: 0;
}
.step-content {
    flex: 1;
}
.step-content strong {
    color: #333;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}
.step-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* 案例高亮样式 */
.case-highlights {
    margin-top: 20px;
}
.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid rgb(55, 137, 239);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgb(55, 137, 239);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
}
.highlight-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}
.highlight-item strong {
    color: rgb(55, 137, 239);
}

/* 成功数据 */
.success-stats {
    background: #e3f2fd;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
}
.stat-item {
    text-align: center;
    padding: 20px;
}
.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: rgb(55, 137, 239);
    margin-bottom: 10px;
}
.stat-label {
    color: #666;
    font-size: 16px;
}

/* 行动召唤 */
.cta-section {
    background: linear-gradient(135deg, rgb(55, 137, 239) 0%, rgb(37, 115, 214) 100%);
    color: white;
    padding: 50px 30px;
    text-align: center;
    margin: 50px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(55, 137, 239, 0.3);
}
.cta-section h3 {
    font-size: 24px !important;
    margin-bottom: 25px !important;
    color: white !important;
    font-family: "微软雅黑";
    font-weight: bold !important;
}
.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    color: white !important;
    font-family: "微软雅黑";
    line-height: 1.5;
}
.cta-button {
    background: white;
    color: rgb(55, 137, 239);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.cta-button:hover {
    background: #f0f0f0;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* 常见问题 */
.faq-section {
    margin: 50px 0;
}
.faq-section h3 {
    margin-bottom: 30px !important;
    font-size: 24px !important;
}
.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.faq-question {
    background: #f8f9fa;
    padding: 20px 25px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}
.faq-answer {
    padding: 25px;
    background: white;
    display: none;
    line-height: 1.7;
}
.faq-answer.active {
    display: block;
}
.arrow {
    transition: transform 0.3s ease;
    font-size: 14px;
    color: rgb(55, 137, 239);
}
.arrow.active {
    transform: rotate(180deg);
}

/* 计算工具样式 */
.calculator-box {
    background-color: #e3f2fd;
    border: 2px solid rgb(55, 137, 239);
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
}
.calculator-box h3 {
    color: rgb(55, 137, 239);
    margin-top: 0;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: rgb(55, 137, 239);
}
.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.calculate-btn {
    background-color: rgb(55, 137, 239);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}
.calculate-btn:hover {
    background-color: rgb(37, 115, 214);
}
.result-box {
    background-color: #bbdefb;
    border-radius: 4px;
    padding: 15px;
    margin-top: 20px;
}

/* 案例研究样式 */
.case-study {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
}
.case-study h4 {
    color: rgb(55, 137, 239);
    margin-top: 0;
}
.case-steps {
    list-style-type: none;
    padding-left: 0;
}
.case-steps li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
}
.case-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: rgb(55, 137, 239);
    font-weight: bold;
}

/* 回收技术样式 */
.recycling-tech {
    background-color: #e3f2fd;
    border: 2px solid rgb(55, 137, 239);
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
}
.recycling-tech h3 {
    color: rgb(55, 137, 239);
    margin-top: 0;
    margin-bottom: 20px;
}
.tech-features {
    list-style-type: none;
    padding-left: 0;
}
.tech-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
}
.tech-features li:before {
    content: "♻️";
    position: absolute;
    left: 0;
    top: 0;
}

/* 行业应用样式 */
.industry-app {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
}
.industry-app h4 {
    color: rgb(55, 137, 239);
    margin-top: 0;
}
.app-list {
    list-style-type: none;
    padding-left: 0;
}
.app-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.6;
}
.app-list li:before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
}

/* 回收表格样式 */
.recycling-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.recycling-table th, .recycling-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}
.recycling-table th {
    background-color: rgb(55, 137, 239);
    color: white;
    font-weight: bold;
}
.recycling-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* 食品行业主题样式 */
.food-industry { 
    background-color: #e3f2fd;
    border: 2px solid rgb(55, 137, 239);
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
}
.food-industry h3 {
    color: rgb(55, 137, 239);
    margin-top: 0;
    margin-bottom: 20px;
}
.process-steps {
    list-style-type: none;
    padding-left: 0;
}
.process-steps li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
}
.process-steps li:before {
    content: "🍽️";
    position: absolute;
    left: 0;
    top: 0;
}
.odor-sources {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
}
.odor-sources h4 {
    color: rgb(55, 137, 239);
    margin-top: 0;
}
.source-list {
    list-style-type: none;
    padding-left: 0;
}
.source-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.6;
}
.source-list li:before {
    content: "👃";
    position: absolute;
    left: 0;
    top: 0;
}
.rto-solution {
    background-color: #e3f2fd;
    border: 1px solid rgb(55, 137, 239);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}
.rto-solution h4 {
    color: rgb(55, 137, 239);
    margin-top: 0;
}
.solution-list {
    list-style-type: none;
    padding-left: 0;
}
.solution-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.6;
}
.solution-list li:before {
    content: "🔥";
    position: absolute;
    left: 0;
    top: 0;
}

/* 医药化工主题样式 */
.pharma-industry {
    background-color: #e3f2fd;
    border: 2px solid rgb(55, 137, 239);
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
}
.pharma-industry h3 {
    color: rgb(55, 137, 239);
    margin-top: 0;
    margin-bottom: 20px;
}
.process-flow {
    list-style-type: none;
    padding-left: 0;
}
.process-flow li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
}
.process-flow li:before {
    content: "⚗️";
    position: absolute;
    left: 0;
    top: 0;
}
.tech-section {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
}
.tech-section h4 {
    color: rgb(55, 137, 239);
    margin-top: 0;
}
.tech-features {
    list-style-type: none;
    padding-left: 0;
}
.tech-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.6;
}
.tech-features li:before {
    content: "🔬";
    position: absolute;
    left: 0;
    top: 0;
}
.case-detail {
    background-color: #bbdefb;
    border: 1px solid rgb(55, 137, 239);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}
.case-detail h4 {
    color: rgb(55, 137, 239);
    margin-top: 0;
}
.case-info {
    list-style-type: none;
    padding-left: 0;
}
.case-info li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.6;
}
.case-info li:before {
    content: "📋";
    position: absolute;
    left: 0;
    top: 0;
}

/* 化工储罐区主题样式 */
.tank-farm {
    background-color: #e3f2fd;
    border: 2px solid rgb(55, 137, 239);
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
}
.tank-farm h3 {
    color: rgb(55, 137, 239);
    margin-top: 0;
    margin-bottom: 20px;
}
.leak-sources {
    list-style-type: none;
    padding-left: 0;
}
.leak-sources li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
}
.leak-sources li:before {
    content: "⚙️";
    position: absolute;
    left: 0;
    top: 0;
}
.solution-section {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
}
.solution-section h4 {
    color: rgb(55, 137, 239);
    margin-top: 0;
}
.solution-steps {
    list-style-type: none;
    padding-left: 0;
}
.solution-steps li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.6;
}
.solution-steps li:before {
    content: "🔧";
    position: absolute;
    left: 0;
    top: 0;
}
.closed-loop {
    background-color: #bbdefb;
    border: 1px solid rgb(55, 137, 239);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}
.closed-loop h4 {
    color: rgb(55, 137, 239);
    margin-top: 0;
}
.system-components {
    list-style-type: none;
    padding-left: 0;
}
.system-components li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.6;
}
.system-components li:before {
    content: "🧪";
    position: absolute;
    left: 0;
    top: 0;
}

/* 技术趋势主题样式 */
.trend-section {
    background-color: #e3f2fd;
    border: 2px solid rgb(55, 137, 239);
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
}
.trend-section h3 {
    color: rgb(55, 137, 239);
    margin-top: 0;
    margin-bottom: 20px;
}
.trend-list {
    list-style-type: none;
    padding-left: 0;
}
.trend-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
}
.trend-list li:before {
    content: "🚀";
    position: absolute;
    left: 0;
    top: 0;
}
.tech-leader {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
}
.tech-leader h4 {
    color: rgb(55, 137, 239);
    margin-top: 0;
}
.leader-features {
    list-style-type: none;
    padding-left: 0;
}
.leader-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.6;
}
.leader-features li:before {
    content: "🏆";
    position: absolute;
    left: 0;
    top: 0;
}
.future-outlook {
    background-color: #bbdefb;
    border: 1px solid rgb(55, 137, 239);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}
.future-outlook h4 {
    color: rgb(55, 137, 239);
    margin-top: 0;
}
.outlook-points {
    list-style-type: none;
    padding-left: 0;
}
.outlook-points li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.6;
}
.outlook-points li:before {
    content: "🔮";
    position: absolute;
    left: 0;
    top: 0;
}

/* 案例主题样式 */
.case-orange {
    background-color: #e3f2fd;
    border: 2px solid rgb(55, 137, 239);
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
}
.case-orange h3 {
    color: rgb(55, 137, 239);
    margin-top: 0;
    margin-bottom: 20px;
}
.case-info-list {
    list-style-type: none;
    padding-left: 0;
}
.case-info-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
}
.case-info-list li:before {
    content: "📋";
    position: absolute;
    left: 0;
    top: 0;
}
.cost-saving {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
}
.cost-saving h4 {
    color: rgb(55, 137, 239);
    margin-top: 0;
}
.saving-details {
    list-style-type: none;
    padding-left: 0;
}
.saving-details li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.6;
}
.saving-details li:before {
    content: "💰";
    position: absolute;
    left: 0;
    top: 0;
}
.tech-implementation {
    background-color: #bbdefb;
    border: 1px solid rgb(55, 137, 239);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}
.tech-implementation h4 {
    color: rgb(55, 137, 239);
    margin-top: 0;
}
.implementation-steps {
    list-style-type: none;
    padding-left: 0;
}
.implementation-steps li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.6;
}
.implementation-steps li:before {
    content: "🔧";
    position: absolute;
    left: 0;
    top: 0;
}

/* 集气罩主题样式 */
.hood-calculator {
    background-color: #e3f2fd;
    border: 2px solid rgb(55, 137, 239);
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
}
.hood-calculator h3 {
    color: rgb(55, 137, 239);
    margin-top: 0;
    margin-bottom: 20px;
}
.calc-formula {
    background-color: #bbdefb;
    border: 1px solid rgb(55, 137, 239);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}
.calc-formula h4 {
    color: rgb(55, 137, 239);
    margin-top: 0;
}

/* 溶剂回收主题样式 */
.solvent-recovery {
    background-color: #e3f2fd;
    border: 2px solid rgb(55, 137, 239);
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
}
.solvent-recovery h3 {
    color: rgb(55, 137, 239);
    margin-top: 0;
    margin-bottom: 20px;
}
.recovery-method {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
}
.recovery-method h4 {
    color: rgb(55, 137, 239);
    margin-top: 0;
}
.method-features {
    list-style-type: none;
    padding-left: 0;
}
.method-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
}
.method-features li:before {
    content: "♻️";
    position: absolute;
    left: 0;
    top: 0;
}
.industry-app {
    background-color: #e3f2fd;
    border: 2px solid rgb(55, 137, 239);
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
}
.industry-app h3 {
    color: rgb(55, 137, 239);
    margin-top: 0;
    margin-bottom: 20px;
}
.app-list {
    list-style-type: none;
    padding-left: 0;
}
.app-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.6;
}
.app-list li:before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
}

/* 焚烧技术主题样式 */
.incineration-tech {
    background-color: #e3f2fd;
    border: 2px solid rgb(55, 137, 239);
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
}
.incineration-tech h3 {
    color: rgb(55, 137, 239);
    margin-top: 0;
    margin-bottom: 20px;
}
.tech-card {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
}
.tech-card h4 {
    color: rgb(55, 137, 239);
    margin-top: 0;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.comparison-table th, .comparison-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}
.comparison-table th {
    background-color: rgb(55, 137, 239);
    color: white;
    font-weight: bold;
}
.comparison-table tr:nth-child(even) {
    background-color: #f8f9fa;
}
.selection-guide {
    background-color: #e3f2fd;
    border: 2px solid rgb(55, 137, 239);
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
}
.selection-guide h3 {
    color: rgb(55, 137, 239);
    margin-top: 0;
    margin-bottom: 20px;
}
.guide-list {
    list-style-type: none;
    padding-left: 0;
}
.guide-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
}
.guide-list li:before {
    content: "📋";
    position: absolute;
    left: 0;
    top: 0;
}

/* 化工园区主题样式 */
.chemical-park {
    background-color: #e3f2fd;
    border: 2px solid rgb(55, 137, 239);
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
}
.chemical-park h3 {
    color: rgb(55, 137, 239);
    margin-top: 0;
    margin-bottom: 20px;
}
.policy-overview {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
}
.policy-overview h4 {
    color: rgb(55, 137, 239);
    margin-top: 0;
}
.policy-points {
    list-style-type: none;
    padding-left: 0;
}
.policy-points li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
}
.policy-points li:before {
    content: "📋";
    position: absolute;
    left: 0;
    top: 0;
}
.solution-section {
    background-color: #e3f2fd;
    border: 2px solid rgb(55, 137, 239);
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
}
.solution-section h3 {
    color: rgb(55, 137, 239);
    margin-top: 0;
    margin-bottom: 20px;
}
.solution-features {
    list-style-type: none;
    padding-left: 0;
}
.solution-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
}
.solution-features li:before {
    content: "🔥";
    position: absolute;
    left: 0;
    top: 0;
}
.case-study {
    background-color: #e3f2fd;
    border: 2px solid rgb(55, 137, 239);
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
}
.case-study h3 {
    color: rgb(55, 137, 239);
    margin-top: 0;
    margin-bottom: 20px;
}
.case-details {
    list-style-type: none;
    padding-left: 0;
}
.case-details li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
}
.case-details li:before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
}