/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* 头部样式 */
header {
    background-color: #2c5e1a;
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* 主要内容区域 */
main {
    min-height: calc(100vh - 140px);
}

/* 页面头部（内部页面） */
.page-header {
    background: linear-gradient(135deg, #6abf4b 0%, #2c5e1a 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* 产品中心页面 */
.products-content {
    padding: 50px 0;
}

.product-categories {
    margin-bottom: 30px;
}

.product-categories ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 10px;
}

.product-categories ul li a {
    display: block;
    padding: 10px 20px;
    background-color: #e8f5e9;
    color: #2c5e1a;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s;
}

.product-categories ul li a:hover,
.product-categories ul li.active a {
    background-color: #2c5e1a;
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    background-color: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 4rem;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c5e1a;
}

.product-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff9800;
}

.btn-details {
    display: inline-block;
    background-color: #2c5e1a;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-details:hover {
    background-color: #1e3f13;
}

/* 服务中心页面 */
.services-content {
    padding: 50px 0;
}

.services-intro {
    text-align: center;
    margin-bottom: 50px;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.services-intro h2 {
    font-size: 2rem;
    color: #2c5e1a;
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c5e1a;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card ul li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 15px;
}

.service-card ul li:before {
    content: "✓";
    color: #6abf4b;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-process {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.service-process h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c5e1a;
    margin-bottom: 30px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2c5e1a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #2c5e1a;
    margin-bottom: 10px;
}

/* 知识库页面 */
.knowledge-content {
    padding: 50px 0;
}

.knowledge-search {
    display: flex;
    max-width: 600px;
    margin: 0 auto 40px;
}

.knowledge-search input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
    outline: none;
}

.knowledge-search button {
    padding: 12px 25px;
    background-color: #2c5e1a;
    color: white;
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.knowledge-search button:hover {
    background-color: #1e3f13;
}

.knowledge-categories {
    margin-bottom: 50px;
}

.knowledge-categories h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c5e1a;
    margin-bottom: 30px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.category-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.category-item h3 {
    font-size: 1.4rem;
    color: #2c5e1a;
    margin-bottom: 15px;
}

.category-item p {
    color: #666;
    line-height: 1.6;
}

.popular-articles h2 {
    font-size: 2rem;
    color: #2c5e1a;
    margin-bottom: 30px;
    text-align: center;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-item {
    display: flex;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.article-item:hover {
    transform: translateY(-3px);
}

.article-thumb {
    font-size: 2rem;
    margin-right: 20px;
    align-self: flex-start;
}

.article-info {
    flex: 1;
}

.article-info h3 {
    font-size: 1.3rem;
    color: #2c5e1a;
    margin-bottom: 10px;
}

.article-summary {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #888;
}

/* 常见问题页面 */
.faq-content {
    padding: 50px 0;
}

.faq-search {
    display: flex;
    max-width: 600px;
    margin: 0 auto 40px;
}

.faq-search input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
    outline: none;
}

.faq-search button {
    padding: 12px 25px;
    background-color: #2c5e1a;
    color: white;
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-search button:hover {
    background-color: #1e3f13;
}

.faq-categories {
    margin-bottom: 30px;
}

.faq-categories ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.faq-categories ul li a {
    display: block;
    padding: 10px 20px;
    background-color: #e8f5e9;
    color: #2c5e1a;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s;
}

.faq-categories ul li a:hover,
.faq-categories ul li.active a {
    background-color: #2c5e1a;
    color: white;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #2c5e1a;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5e1a;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    margin-bottom: 15px;
    line-height: 1.6;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer strong {
    color: #2c5e1a;
}

/* 联系我们页面 */
.contact-content {
    padding: 50px 0;
}

.contact-info {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 2rem;
    color: #2c5e1a;
    margin-bottom: 20px;
    text-align: center;
}

.company-details {
    max-width: 600px;
    margin: 0 auto;
}

.company-details p {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.departments-contact {
    margin-bottom: 40px;
}

.departments-contact h2 {
    font-size: 2rem;
    color: #2c5e1a;
    margin-bottom: 30px;
    text-align: center;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.department-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s;
}

.department-item:hover {
    transform: translateY(-5px);
}

.department-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.department-item h3 {
    font-size: 1.4rem;
    color: #2c5e1a;
    margin-bottom: 15px;
}

.department-item p {
    margin-bottom: 5px;
    color: #666;
}

.contact-form-section {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.contact-form-section h2 {
    font-size: 2rem;
    color: #2c5e1a;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form-section p {
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #2c5e1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #2c5e1a;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    margin: 0 auto;
}

.submit-btn:hover {
    background-color: #1e3f13;
}

/* 英雄区域 */
.hero {
    background: linear-gradient(135deg, #6abf4b 0%, #2c5e1a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-button {
    background-color: #ff9800;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e68900;
}

/* 宣传文案区域 */
.slogan-section {
    background-color: #e8f5e9;
    padding: 60px 0;
    text-align: center;
}

.slogan-content h3 {
    font-size: 2rem;
    color: #2c5e1a;
    margin-bottom: 20px;
}

.slogan-content p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* 新闻动态区域 */
.news-section {
    padding: 80px 0;
    background-color: white;
}

.news-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #2c5e1a;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.news-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c5e1a;
}

.date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* 业务范围区域 */
.services-section {
    padding: 80px 0;
    background-color: #e8f5e9;
}

.services-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #2c5e1a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c5e1a;
}

/* 成功案例区域 */
.cases-section {
    padding: 80px 0;
    background-color: white;
}

.cases-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #2c5e1a;
}

.cases-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
}

.case-item {
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.case-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c5e1a;
}

/* 人才发展区域 */
.careers-section {
    padding: 80px 0;
    background-color: #e8f5e9;
}

.careers-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #2c5e1a;
}

.careers-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.careers-content ul {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    display: inline-block;
}

.careers-content ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.careers-content ul li:before {
    content: "✓";
    color: #6abf4b;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.career-link {
    display: inline-block;
    background-color: #2c5e1a;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.career-link:hover {
    background-color: #1e3f13;
}

/* 通用样式 */
.text-center {
    text-align: center;
}

.more-link {
    display: inline-block;
    color: #2c5e1a;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid #2c5e1a;
    border-radius: 30px;
    transition: all 0.3s;
}

.more-link:hover {
    background-color: #2c5e1a;
    color: white;
}

/* 底部样式 */
footer {
    background-color: #1e1e1e;
    color: #ddd;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #6abf4b;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* 响应式设计 */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .services-grid,
    .news-grid,
    .products-grid,
    .categories-grid,
    .departments-grid {
        grid-template-columns: 1fr;
    }

    .cases-slider {
        flex-direction: column;
    }

    .case-item {
        min-width: 100%;
    }

    .knowledge-search,
    .faq-search {
        flex-direction: column;
        gap: 10px;
    }

    .knowledge-search input,
    .faq-search input {
        border-radius: 30px;
    }

    .knowledge-search button,
    .faq-search button {
        border-radius: 30px;
        padding: 12px;
    }

    .article-item {
        flex-direction: column;
    }

    .article-thumb {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .process-steps {
        flex-direction: column;
    }

    .faq-categories ul {
        justify-content: flex-start;
    }

    .commitment-content {
        flex-direction: column;
    }

    .service-commitment h2 {
        font-size: 1.8rem;
    }
}

/* 新闻页面 */
.news-content {
    padding: 50px 0;
}

.news-content .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.news-list {
    flex: 3;
    min-width: 300px;
}

.news-article {
    background-color: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-article:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-header h2 {
    font-size: 1.8rem;
    color: #2c5e1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.article-meta .date,
.article-meta .author {
    color: #888;
    font-size: 0.9rem;
}

.article-meta .author {
    background-color: #e8f5e9;
    padding: 3px 10px;
    border-radius: 20px;
}

.article-content {
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 15px;
    text-align: justify;
}

/* 分页导航 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

.pagination ul li a {
    display: block;
    padding: 10px 15px;
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.pagination ul li a:hover,
.pagination ul li a.active {
    background-color: #2c5e1a;
    color: white;
}

/* 侧边栏 */
.sidebar {
    flex: 1;
    min-width: 250px;
}

.sidebar-widget {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    color: #2c5e1a;
    margin-bottom: 20px;
    font-size: 1.3rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f5e9;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

.sidebar-widget ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.sidebar-widget ul li a:hover {
    color: #6abf4b;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background-color: #e8f5e9;
    color: #2c5e1a;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s;
    cursor: pointer;
}

.tag:hover {
    background-color: #2c5e1a;
    color: white;
    transform: translateY(-2px);
}

/* 服务承诺板块样式 */
.service-commitment {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 50px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.service-commitment:before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(44, 94, 26, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.service-commitment:after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -30px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(44, 94, 26, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.service-commitment h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c5e1a;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.commitment-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.commitment-item {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.commitment-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.commitment-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2c5e1a, #6abf4b);
}

.commitment-item h3 {
    font-size: 1.5rem;
    color: #2c5e1a;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e0e0e0;
}

.commitment-item p {
    line-height: 1.8;
    color: #555;
}

.commitment-item p br {
    margin-bottom: 10px;
}