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

:root {
    --primary-color: #0066cc;
    --primary-dark: #004c99;
    --secondary-color: #00a67d;
    --accent-color: #ff6600;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

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

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

.section-header h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.logo-sub {
    font-size: 12px;
    color: var(--text-light);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary-color);
}

.contact-info .phone {
    font-weight: 600;
    color: var(--primary-color);
}

.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, #003366 0%, #0066cc 50%, #00a67d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-white);
    margin-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 40px;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 22px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    font-size: 14px;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.about {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.about-info h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    text-align: justify;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.about-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.about-img-card {
    text-align: center;
}

.about-img-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: transform 0.3s;
}

.about-img-card:hover img {
    transform: scale(1.05);
}

.about-img-card span {
    font-size: 13px;
    color: var(--text-light);
}

.services {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.service-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.service-images {
    display: flex;
    height: 180px;
    gap: 5px;
    padding: 10px;
    background: #f0f0f0;
}

.service-images .main-img {
    width: 65%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.service-images .thumb-img {
    width: 32%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-provider {
    font-size: 12px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-features {
    list-style: none;
    margin-bottom: 15px;
}

.service-features li {
    font-size: 13px;
    color: var(--text-light);
    padding: 5px 0;
    border-bottom: 1px dashed var(--border-color);
}

.service-features li:last-child {
    border-bottom: none;
}

.features {
    padding: 80px 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
}

.cases {
    padding: 80px 0;
    background: var(--bg-light);
}

.cases-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.case-item {
    display: flex;
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.case-img {
    width: 300px;
    flex-shrink: 0;
}

.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-info h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.case-info p {
    font-size: 14px;
    color: var(--text-light);
}

.contact {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-light);
}

.contact-form {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.contact-form h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.footer {
    background: #1a1a2e;
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.footer-info p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 5px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--bg-white);
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 5px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .services-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .case-img {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.header-auth {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-auth .btn-text {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.header-auth .btn-text:hover,
.header-auth .btn-text.active {
    color: var(--primary-color);
}

.header-auth .btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.user-welcome {
    font-size: 14px;
    color: var(--text-light);
}

.page-hero {
    background: linear-gradient(135deg, #003366 0%, #0066cc 50%, #00a67d 100%);
    color: white;
    text-align: center;
    padding: 120px 0 60px;
    margin-top: 70px;
}

.page-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.news-section {
    padding: 50px 0;
}

.news-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

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

.news-item {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.news-item-img {
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.news-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item-content {
    padding: 0;
}

.news-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 3px 12px;
    border-radius: 3px;
    font-size: 12px;
    margin-bottom: 10px;
}

.news-item h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.news-summary {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-light);
}

.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.page-btn {
    padding: 8px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.sidebar-widget h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.hot-articles {
    list-style: none;
}

.hot-articles li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.hot-articles li:hover {
    color: var(--primary-color);
}

.hot-articles li:last-child {
    border-bottom: none;
}

.category-list {
    list-style: none;
}

.category-list li a {
    display: block;
    padding: 10px 0;
    color: var(--text-light);
    text-decoration: none;
    border-bottom: 1px dashed var(--border-color);
    transition: color 0.3s;
}

.category-list li a:hover,
.category-list li a.active {
    color: var(--primary-color);
}

.category-list li:last-child a {
    border-bottom: none;
}

.back-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 14px;
}

.back-link:hover {
    text-decoration: underline;
}

.detail-content {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.detail-content h1 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.detail-meta {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
    font-size: 14px;
    color: var(--text-light);
}

.detail-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.auth-section {
    padding: 120px 0 60px;
    background: var(--bg-light);
    min-height: 100vh;
}

.auth-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

.auth-box {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.auth-header p {
    font-size: 14px;
    color: var(--text-light);
}

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

.auth-form label {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.auth-form input,
.auth-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.auth-form input:focus,
.auth-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-wrap input {
    width: auto;
}

.checkbox-wrap label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 13px;
}

.forgot-link {
    color: var(--primary-color);
    font-size: 13px;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-block {
    width: 100%;
    padding: 14px;
}

.auth-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    background: var(--bg-white);
    padding: 0 15px;
    position: relative;
    color: var(--text-light);
    font-size: 13px;
}

.social-login {
    text-align: center;
}

.social-btn {
    width: 100%;
    padding: 12px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--bg-white);
    border-color: var(--primary-color);
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.auth-footer p {
    font-size: 14px;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-info {
    background: linear-gradient(135deg, #003366 0%, #0066cc 50%, #00a67d 100%);
    border-radius: 10px;
    padding: 40px;
    color: white;
}

.auth-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.auth-info ul {
    list-style: none;
}

.auth-info li {
    padding: 10px 0;
    font-size: 15px;
}

.auth-tips {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.auth-tips h4 {
    font-size: 15px;
    margin-bottom: 8px;
}

.auth-tips p {
    font-size: 13px;
    opacity: 0.9;
}

.optional {
    color: var(--text-light);
    font-weight: normal;
}

.service-detail-section {
    padding: 100px 0 50px;
}

.service-detail-container {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.service-detail-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.service-detail-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.service-detail-images .main-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-images .thumb-image {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-info {
    display: flex;
    flex-direction: column;
}

.service-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 12px;
    width: fit-content;
    margin-bottom: 15px;
}

.service-detail-info h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-provider {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.service-publisher {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 8px;
}

.service-phone {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.service-detail-info .btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
    margin-top: 10px;
}

.service-detail-info .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 188, 156, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.service-quick-contact {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.service-detail-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.service-detail-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 25px 0 15px;
}

.service-detail-content h3:first-child {
    margin-top: 0;
}

.service-detail-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.service-features-detail {
    list-style: none;
}

.service-features-detail li {
    padding: 10px 0;
    color: var(--text-light);
    border-bottom: 1px dashed var(--border-color);
}

.service-features-detail li:last-child {
    border-bottom: none;
}

.service-process {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-num {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-name {
    font-size: 13px;
    color: var(--text-light);
}

.process-arrow {
    color: var(--primary-color);
    font-size: 20px;
}

.service-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 20px;
}

.sidebar-card h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.sidebar-card li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
}

.sidebar-card p {
    padding: 5px 0;
    font-size: 14px;
    color: var(--text-light);
}

.service-inquiry {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.service-inquiry h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-inquiry > p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.inquiry-form .form-row-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.inquiry-form label {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.related-services {
    padding: 50px 0;
}

.related-services h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 25px;
}

@media (max-width: 992px) {
    .news-layout {
        grid-template-columns: 1fr;
    }

    .auth-container {
        grid-template-columns: 1fr;
    }

    .service-detail-header {
        grid-template-columns: 1fr;
    }

    .service-detail-body {
        grid-template-columns: 1fr;
    }

    .inquiry-form .form-row-group {
        grid-template-columns: 1fr;
    }

    .service-process {
        flex-wrap: wrap;
        gap: 15px;
    }

    .news-preview {
        padding: 80px 0;
        background: var(--bg-light);
    }

    .section-more {
        display: inline-block;
        margin-top: 10px;
        color: var(--primary-color);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s;
    }

    .section-more:hover {
        color: var(--primary-dark);
    }

    .news-preview-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .news-preview-item {
        background: var(--bg-white);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
        cursor: pointer;
        transition: all 0.3s;
    }

    .news-preview-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

    .news-preview-img {
        height: 180px;
        overflow: hidden;
    }

    .news-preview-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

    .news-preview-item:hover .news-preview-img img {
        transform: scale(1.1);
    }

    .news-preview-content {
        padding: 20px;
    }

    .news-preview-category {
        display: inline-block;
        background: var(--primary-color);
        color: white;
        padding: 3px 10px;
        border-radius: 3px;
        font-size: 11px;
        margin-bottom: 10px;
    }

    .news-preview-content h3 {
        font-size: 16px;
        color: var(--text-dark);
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-preview-summary {
        font-size: 13px;
        color: var(--text-light);
        margin-bottom: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-preview-meta {
        display: flex;
        gap: 15px;
        font-size: 12px;
        color: var(--text-light);
    }

    @media (max-width: 992px) {
        .news-preview-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .news-preview-grid {
            grid-template-columns: 1fr;
        }
    }

    .publish-section {
        padding: 80px 0;
        background: var(--bg-light);
    }

    .publish-container {
        display: grid;
        grid-template-columns: 1fr 320px;
        gap: 30px;
    }

    .publish-form-wrapper {
        background: var(--bg-white);
        border-radius: 10px;
        padding: 40px;
        box-shadow: var(--shadow);
    }

    .publish-form-wrapper h2 {
        font-size: 24px;
        color: var(--text-dark);
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--primary-color);
    }

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

    .publish-form .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .publish-form label {
        display: block;
        font-weight: 500;
        margin-bottom: 8px;
        color: var(--text-dark);
    }

    .publish-form .required {
        color: #e74c3c;
    }

    .publish-form input,
    .publish-form select,
    .publish-form textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 14px;
        transition: border-color 0.3s;
    }

    .publish-form input:focus,
    .publish-form select:focus,
    .publish-form textarea:focus {
        outline: none;
        border-color: var(--primary-color);
    }

    .publish-form textarea {
        resize: vertical;
    }

    .form-actions {
        display: flex;
        gap: 15px;
        margin-top: 30px;
    }

    .publish-tips {
        list-style: none;
        padding: 0;
    }

    .publish-tips li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        font-size: 14px;
        color: var(--text-light);
    }

    .hot-services {
        list-style: none;
        padding: 0;
    }

    .hot-services li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .hot-services li a {
        color: var(--text-dark);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s;
    }

    .hot-services li a:hover {
        color: var(--primary-color);
    }

    @media (max-width: 992px) {
        .publish-container {
            grid-template-columns: 1fr;
        }

        .publish-form .form-row {
            grid-template-columns: 1fr;
        }
    }
}