/*
Theme Name: 香港债务重组服务中心
Theme URI: https://your-site.com/
Author: 你
Author URI: https://your-site.com/
Description: 专业的债务重组咨询主题，提供IVA、DRP、IDRP等信息服务。
Version: 1.0.0
License: GPL v2 or later
Text Domain: debt-theme
*/

/* ===== 全局重置 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

a {
    text-decoration: none;
    color: #44aba3;
    transition: 0.3s;
}

a:hover {
    color: #2c7a73;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== 头部 ===== */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

/* ===== 底部 ===== */
.site-footer {
    background: #1e2a36;
    color: #ccc;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-widgets h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-widgets ul {
    list-style: none;
}

.footer-widgets li {
    margin-bottom: 8px;
}

.footer-widgets a {
    color: #aaa;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #3a4a55;
    font-size: 13px;
}

/* ===== 首页区块 ===== */
.hero {
    background: linear-gradient(135deg, #eef9f7 0%, #ffffff 100%);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    color: #1e3c3a;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    background: #44aba3;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #2c7a73;
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background: #f9f9f9;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.service-card i {
    font-size: 48px;
    color: #44aba3;
    margin-bottom: 20px;
}

/* ===== 响应式 ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .main-nav {
        display: none;
        width: 100%;
        margin-top: 15px;
    }
    .main-nav.active {
        display: block;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .hero h1 {
        font-size: 32px;
    }
}
/* 新闻版块样式 */
.news-section {
    background-color: #f8f9fa;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.news-title a:hover, 
.read-more:hover {
    color: #1b4d3e !important;
    text-decoration: underline !important;
}

