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

body {
    font-family: 'Microsoft YaHei', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5fff5;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Banner Styles */
.banner {
    background-color: #1e5631;
    color: white;
    padding: 60px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.banner h1 {
    font-size: 3.5rem;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Tagline Styles */
.tagline {
    background-color: #2e7d32;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.tagline p {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Main Content Styles */
main {
    min-height: 60vh;
    padding: 60px 0;
    background-color: #f8fff8;
}

.contact-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #e8f5e9;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    max-width: 800px;
}

.contact-section h2 {
    color: #2e7d32;
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.contact-btn {
    display: inline-block;
    background-color: #2e7d32;
    color: white;
    padding: 14px 36px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

.contact-btn:hover {
    background-color: #388e3c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 125, 50, 0.3);
}

/* Footer Styles */
footer {
    background-color: #1b5e20;
    color: #e8f5e9;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin: 8px 0;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .banner h1 {
        font-size: 2.5rem;
    }
    
    .tagline p {
        font-size: 1.2rem;
    }
    
    .contact-section h2 {
        font-size: 1.8rem;
    }
    
    .contact-btn {
        padding: 12px 28px;
        font-size: 1.1rem;
    }
} 