* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Microsoft YaHei", "Segoe UI", sans-serif;
}

body {
background-color: #f5f7fa;
color: #333;
line-height: 1.6;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}

header {
background: linear-gradient(135deg, #1a6bc4 0%, #0d4a9c 100%);
color: white;
padding: 40px 20px;
text-align: center;
border-radius: 0 0 10px 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
margin-bottom: 30px;
}

h1 {
font-size: 2.5rem;
margin-bottom: 15px;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.subtitle {
font-size: 1.2rem;
max-width: 800px;
margin: 0 auto;
opacity: 0.9;
}

section {
background: white;
border-radius: 8px;
padding: 30px;
margin-bottom: 30px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease;
border: 1px solid #eaeaea;
}

section:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

h2 {
color: #1a6bc4;
border-left: 5px solid #1a6bc4;
padding-left: 15px;
margin-bottom: 20px;
font-size: 1.8rem;
}

h3 {
color: #0d4a9c;
margin: 20px 0 10px;
font-size: 1.3rem;
}

p {
margin-bottom: 15px;
text-align: justify;
}

ul, ol {
margin-left: 20px;
margin-bottom: 20px;
}

li {
margin-bottom: 10px;
}

.highlight {
background-color: #e8f2ff;
padding: 15px;
border-radius: 5px;
border-left: 4px solid #1a6bc4;
margin: 20px 0;
color: #222;
}

.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin-top: 20px;
}

.card {
background: #f9f9f9;
padding: 20px;
border-radius: 8px;
border-top: 4px solid #1a6bc4;
transition: all 0.3s ease;
color: #333;
}

.card:hover {
background: #e8f2ff;
transform: translateY(-3px);
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 20px;
}

.team-member {
text-align: center;
padding: 20px;
background: #f9f9f9;
border-radius: 8px;
color: #333;
}

.team-member h4 {
color: #0d4a9c;
margin: 10px 0 5px;
}

.team-member .title {
color: #666;
font-style: italic;
margin-bottom: 10px;
}

.cta-section {
text-align: center;
background: linear-gradient(135deg, #1a6bc4 0%, #0d4a9c 100%);
color: white;
padding: 40px 20px;
border-radius: 10px;
}

.cta-section h2 {
color: white;
border-left: none;
text-align: center;
}

.btn {
display: inline-block;
background: #ff6b00;
color: white;
padding: 12px 30px;
border-radius: 50px;
text-decoration: none;
font-weight: bold;
margin: 15px 10px;
transition: all 0.3s ease;
box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.btn:hover {
background: #ff8c3a;
transform: translateY(-3px);
box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
background: transparent;
border: 2px solid white;
}

.btn-secondary:hover {
background: white;
color: #1a6bc4;
}

.contact-info {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-top: 20px;
}

.contact-item {
flex: 1;
min-width: 200px;
margin: 10px;
padding: 15px;
background: rgba(255, 255, 255, 0.2);
border-radius: 8px;
text-align: center;
color: white;
}

.contact-item h3 {
color: white;
margin-bottom: 10px;
}

footer {
text-align: center;
padding: 20px;
margin-top: 40px;
color: #666;
border-top: 1px solid #eee;
}

.price-tag {
background: #ff6b00;
color: white;
padding: 8px 15px;
border-radius: 20px;
font-weight: bold;
display: inline-block;
margin-top: 10px;
}

@media (max-width: 768px) {
h1 {
font-size: 2rem;
}

section {
padding: 20px;
}

.grid, .team-grid {
grid-template-columns: 1fr;
}

.contact-info {
flex-direction: column;
}
}