/* Base Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #28a745;
    --accent-color: #ffc107;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --border-radius: 8px;
}

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

body {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f0f2f5;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-color), #003d7a);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

header h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

header .subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.date-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Cards and Sections */
.card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    font-size: 1.4rem;
}

/* Hero Section */
#hero {
    margin-top: -30px;
}

.hero-content {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.highlight {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s;
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
}

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

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

/* Consultant Info */
.consultant-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.avatar-placeholder img {
    width: 120px;
    height: 145px;
    /* border-radius: 50%; */
    /* object-fit: cover; */
    object-fit: fill;
    border: 1px solid var(--primary-color);
}

.job-title {
    font-weight: bold;
    color: #666;
    margin-bottom: 10px;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.process-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.process-card ol {
    padding-left: 20px;
}

.process-card li {
    margin-bottom: 8px;
}

/* Safety Knowledge */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.safety-item {
    background: #fff5f5;
    padding: 15px;
    border-left: 4px solid #ff4d4f;
    border-radius: 4px;
    font-size: 0.95rem;
}

/* Significance and Features */
#significance .important {
    background: #fffbe6;
    padding: 10px;
    border: 1px dashed var(--accent-color);
    margin: 15px 0;
    font-weight: bold;
}

.features {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.features span {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #333;
    color: #eee;
    padding: 40px 0;
    text-align: center;
    margin-top: 50px;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .consultant-info {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .features {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}
