/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    background: #fff;
    height: 70px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    max-height: 50px;
	max-width: 100%;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.logo-text sup {
    font-size: 10px;
    color: #999;
}

.logo-subtitle {
    font-size: 12px;
    color: #999;
    margin-left: 10px;
}

.nav {
    display: flex;
    align-items: center;
}

.nav ul {
    display: flex;
    gap: 40px;
}

.nav li a {
    font-size: 15px;
    color: #333;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s;
}

.nav li a:hover,
.nav li a.active {
    color: #2db4ac;
}

.nav li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #2db4ac;
    border-radius: 2px;
}

.header-phone {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    letter-spacing: 1px;
}

/* Banner */
.banner {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Quick Loan Section */
.quick-loan {
    padding: 40px 0;
    text-align: center;
}

.quick-loan-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.quick-loan-title span {
    color: #2db4ac;
    font-weight: bold;
}

.quick-loan-subtitle {
    font-size: 14px;
    color: #999;
    margin-bottom: 25px;
}

.apply-btn {
    display: inline-block;
    padding: 14px 60px;
    background: linear-gradient(135deg, #2db4ac 0%, #26a69a 100%);
    color: #fff;
    font-size: 18px;
    border-radius: 30px;
    margin-bottom: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 180, 172, 0.3);
}

/* Steps */
.steps-container {
    position: relative;
    padding: 20px 0;
}

.steps-line {
    position: absolute;
    top: 30px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #e0e0e0;
}

.steps-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #2db4ac 0%, #2db4ac 100%);
}

.steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 22%;
    background: #fff;
}

.step-number {
    width: 24px;
    height: 24px;
    background: #2db4ac;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.step-card {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 25px 20px;
    width: 100%;
    text-align: center;
    transition: box-shadow 0.3s;
}

.step-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.step-icon svg {
    width: 100%;
    height: 100%;
    color: #2db4ac;
}

.step-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 13px;
    color: #999;
}

/* Service Stats */
.service-stats {
    background: linear-gradient(rgba(30, 30, 30, 0.85), rgba(30, 30, 30, 0.85)), url('../images/stats-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 50px 0;
    margin-top: 20px;
}

.stats-title {
    text-align: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 40px;
    position: relative;
}

.stats-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #2db4ac;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    color: #fff;
}

.stat-number {
    font-size: 48px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
}

.stat-number span {
    font-size: 18px;
    margin-left: 5px;
}

.stat-label {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

/* Qualification Section */
.qualification {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 26px;
    color: #333;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #2db4ac;
}

.qual-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.qual-card {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 180px;
}

.qual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.qual-title {
    font-size: 16px;
    font-weight: bold;
    color: #2db4ac;
    margin-bottom: 5px;
}

.qual-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

/* News Section */
.news {
    padding: 60px 0;
    background: #f8f8f8;
}

.news-grid {
    display: flex;
    gap: 30px;
}

.news-item {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
}

.news-date {
    font-size: 28px;
    color: #333;
    font-weight: 300;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.news-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-content {
    font-size: 13px;
    color: #999;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Cases Section */
.cases {
    padding: 60px 0;
}

.cases-subtitle {
    text-align: center;
    color: #999;
    margin-top: -30px;
    margin-bottom: 40px;
}

.cases-grid {
    display: flex;
    gap: 30px;
}

.case-card {
    flex: 1;
    text-align: center;
    padding: 20px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    position: relative;
}

.case-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #2db4ac;
}

.case-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    background: #ff6b6b;
    color: #fff;
    font-size: 12px;
    border-radius: 3px;
}

.case-tag.green {
    background: #2db4ac;
}

.case-tag.orange {
    background: #ffa726;
}

.case-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 20px auto 15px;
    overflow: hidden;
    border: 3px solid #f0f0f0;
}

.case-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-name {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.case-type {
    display: inline-block;
    padding: 4px 15px;
    background: #2db4ac;
    color: #fff;
    font-size: 12px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.case-type.orange {
    background: #ffa726;
}

.case-type.blue {
    background: #42a5f5;
}

.case-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    text-align: left;
}

/* Footer */
.footer {
    background: #f5f5f5;
    padding: 40px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    flex: 1;
}

.footer-company {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.footer-icp {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}

.footer-warning {
    font-size: 12px;
    color: #999;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-link {
    padding: 8px 20px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
    transition: all 0.3s;
}

.footer-link:hover {
    border-color: #2db4ac;
    color: #2db4ac;
}

.footer-right {
    text-align: right;
}

.footer-phone {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.footer-phone-desc {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}

.footer-qrcodes {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.qrcode-item {
    text-align: center;
}

.qrcode-item img {
    width: 80px;
    height: 80px;
    border: 1px solid #eee;
}

.qrcode-label {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

/* News List Page */
.page-banner {
    width: 100%;
    height: 200px;
    background: url('../images/news-banner.jpg') center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-left: 80px;
}

.page-banner h1 {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.news-list-section {
    padding: 50px 0 60px;
    background: #f5f5f5;
    min-height: 600px;
}

.news-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.news-list-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-list-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.news-list-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-list-card:hover .news-list-card-img img {
    transform: scale(1.05);
}

.news-list-card-title {
    padding: 20px;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination a:hover {
    border-color: #2db4ac;
    color: #2db4ac;
}

.pagination .active {
    background: #2db4ac;
    border-color: #2db4ac;
    color: #fff;
}

.pagination .disabled {
    color: #999;
    cursor: not-allowed;
}

/* Article Detail Page */
.article-section {
    padding: 40px 0 60px;
    background: #fff;
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.article-title {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #999;
}

.article-meta a {
    color: #2db4ac;
    transition: color 0.3s;
}

.article-meta a:hover {
    color: #26a69a;
}

.article-content {
    font-size: 15px;
    color: #333;
    line-height: 2;
}

.article-content p {
    margin-bottom: 20px;
    text-indent: 2em;
}

.article-content h2,
.article-content h3 {
    font-size: 18px;
    color: #333;
    margin: 30px 0 15px;
    font-weight: bold;
}

.article-content h3 {
    font-size: 16px;
}

.article-content img {
    display: block;
    max-width: 100%;
    margin: 25px auto;
    border-radius: 4px;
}

.article-content ul,
.article-content ol {
    margin: 15px 0 20px 2em;
    list-style: disc;
}

.article-content li {
    margin-bottom: 8px;
    line-height: 1.8;
}

.article-content strong {
    color: #2db4ac;
}

.article-tags {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.article-tags a {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
    color: #2db4ac;
    font-size: 14px;
    transition: color 0.3s;
}

.article-tags a:hover {
    color: #26a69a;
    text-decoration: underline;
}

.article-nav {
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #666;
}

.article-nav p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.article-nav a {
    color: #333;
    transition: color 0.3s;
}

.article-nav a:hover {
    color: #2db4ac;
}

/* About Page */
.about-banner {
    width: 100%;
    height: 200px;
    background: url('../images/about-banner.jpg') center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-left: 80px;
}

.about-banner h1 {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 8px;
}

.about-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.about-intro {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.about-intro-image {
    flex: 0 0 400px;
    height: 280px;
    overflow: hidden;
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro-content {
    flex: 1;
}

.about-intro-title {
    font-size: 22px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-intro-text {
    font-size: 15px;
    color: #666;
    line-height: 2;
    text-align: justify;
}

.about-stats {
    width: 100%;
    height: 200px;
    background: url('../images/about-stats-bg.jpg') center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-stats-grid {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

.about-stat-item {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-stat-number {
    font-size: 56px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
}

.about-stat-number span {
    font-size: 20px;
    margin-left: 5px;
}

.about-stat-label {
    font-size: 14px;
    color: #fff;
    margin-top: 10px;
    opacity: 0.9;
}

/* Service Page */
.service-banner {
    width: 100%;
    height: 200px;
    background: url('../images/service-banner.jpg') center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-left: 80px;
}

.service-banner-text {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-banner-text h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-banner-text h1 span {
    color: #2db4ac;
}

.service-banner-text p {
    font-size: 22px;
}

.service-banner-text p span {
    color: #f5a623;
}

.service-flow-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.service-flow-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 8px;
}

.service-flow-title {
    text-align: center;
    font-size: 26px;
    color: #333;
    margin-bottom: 50px;
    position: relative;
}

.service-flow-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #2db4ac;
}

.service-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 40px;
    margin-bottom: 60px;
}

.service-flow-item {
    text-align: center;
}

.service-flow-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    color: #2db4ac;
}

.service-flow-icon svg {
    width: 100%;
    height: 100%;
}

.service-flow-name {
    font-size: 15px;
    color: #333;
}

.service-adv-title {
    text-align: center;
    font-size: 26px;
    color: #333;
    margin-bottom: 40px;
    position: relative;
}

.service-adv-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #2db4ac;
}

.service-adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.service-adv-item {
    text-align: center;
}

.service-adv-img {
    width: 100%;
    height: 160px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.service-adv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-adv-item:hover .service-adv-img img {
    transform: scale(1.05);
}

.service-adv-name {
    font-size: 15px;
    color: #333;
}

.service-detail {
    padding: 0 20px;
}

.service-detail-item {
    margin-bottom: 20px;
}

.service-detail-item h4 {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 8px;
}

.service-detail-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* FAQ Page */
.faq-banner {
    width: 100%;
    height: 200px;
    background: url('../images/faq-banner.jpg') center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-left: 80px;
}

.faq-banner h1 {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 8px;
}

.faq-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.faq-card {
    background: #fff;
    padding: 40px 50px;
    border-radius: 8px;
}

.faq-title {
    font-size: 22px;
    color: #333;
    font-weight: bold;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #333;
    display: inline-block;
}

.faq-list {
    margin-bottom: 30px;
}

.faq-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.faq-question {
    font-size: 15px;
    color: #333;
}

.faq-question strong {
    color: #333;
    margin-right: 10px;
}

.faq-btn {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #8bc34a 0%, #4caf50 100%);
    color: #fff;
    font-size: 14px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.faq-note {
    text-align: right;
    font-size: 13px;
    color: #999;
    margin-top: 20px;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px 50px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: #999;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.modal-close:hover {
    background: #666;
}

.modal-close svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.modal-title {
    font-size: 26px;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 14px;
    color: #999;
    text-align: center;
    margin-bottom: 30px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
}

.form-label {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.form-select,
.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    background: #f9f9f9;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
}

.form-select:focus,
.form-input:focus {
    border-color: #2db4ac;
}

.form-input::placeholder {
    color: #ccc;
}

.captcha-group {
    display: flex;
    gap: 15px;
}

.captcha-group .form-input {
    flex: 1;
}

.captcha-img {
    height: 50px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    font-size: 20px;
    font-style: italic;
    letter-spacing: 5px;
    color: #333;
    cursor: pointer;
    user-select: none;
}

.sms-group {
    display: flex;
    gap: 15px;
}

.sms-group .form-input {
    flex: 1;
}

.sms-btn {
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.3s;
}

.sms-btn:hover {
    color: #2db4ac;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #4db6ac 0%, #26a69a 50%, #80cbc4 100%);
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 180, 172, 0.4);
}

/* Contact Page */
.contact-banner {
    width: 100%;
    height: 200px;
    background: url('../images/contact-banner.jpg') center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-left: 80px;
}

.contact-banner h1 {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 8px;
}

.contact-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.contact-card {
    background: #fff;
    padding: 60px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.contact-image {
    flex: 1;
    max-width: 450px;
}

.contact-image img {
    width: 100%;
    height: auto;
}

.contact-info {
    flex: 1;
}

.contact-company {
    font-size: 26px;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}

.contact-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

.contact-list {
    margin-bottom: 30px;
}

.contact-item {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-item strong {
    font-weight: bold;
}

.contact-item .phone {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

.contact-address {
    font-size: 14px;
    color: #666;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .nav ul {
        gap: 20px;
    }
    
    .qual-grid,
    .news-grid,
    .cases-grid {
        flex-wrap: wrap;
    }
    
    .qual-card,
    .news-item,
    .case-card {
        flex: 0 0 48%;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
        height: auto;
        padding: 15px;
    }
    
    .nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    .nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .steps {
        flex-wrap: wrap;
    }
    
    .step {
        width: 48%;
        margin-bottom: 20px;
    }
    
    .steps-line {
        display: none;
    }
    
    .stats-grid {
        flex-wrap: wrap;
    }
    
    .stat-item {
        width: 50%;
        margin-bottom: 20px;
    }
    
    .qual-card,
    .news-item,
    .case-card {
        flex: 0 0 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-right {
        text-align: left;
    }
    
    .footer-qrcodes {
        justify-content: flex-start;
    }
    
    .page-banner {
        height: 150px;
        padding-left: 20px;
    }
    
    .page-banner h1 {
        font-size: 24px;
    }
    
    .news-list-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pagination a,
    .pagination span {
        min-width: 32px;
        height: 32px;
        padding: 0 8px;
        font-size: 12px;
    }
    
    .contact-banner {
        height: 150px;
        padding-left: 20px;
    }
    
    .contact-banner h1 {
        font-size: 24px;
        letter-spacing: 4px;
    }
    
    .contact-card {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .contact-image {
        max-width: 100%;
    }
    
    .contact-company {
        font-size: 20px;
    }
    
    .service-banner {
        height: 150px;
        padding-left: 20px;
    }
    
    .service-banner-text h1 {
        font-size: 20px;
    }
    
    .service-banner-text p {
        font-size: 16px;
    }
    
    .service-flow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-adv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-flow-card {
        padding: 30px 20px;
    }
    
    .about-banner {
        height: 150px;
        padding-left: 20px;
    }
    
    .about-banner h1 {
        font-size: 24px;
        letter-spacing: 4px;
    }
    
    .about-intro {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-intro-image {
        flex: none;
        width: 100%;
        height: 200px;
    }
    
    .about-stats-grid {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .about-stat-item {
        width: 45%;
    }
    
    .about-stat-number {
        font-size: 36px;
    }
    
    .faq-banner {
        height: 150px;
        padding-left: 20px;
    }
    
    .faq-banner h1 {
        font-size: 24px;
        letter-spacing: 4px;
    }
    
    .faq-card {
        padding: 30px 20px;
    }
    
    .faq-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .modal {
        padding: 30px 20px;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}
