* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
color: #333;
background-color: #fff;
}
.site-header {
background-color: #ffffff;
border-bottom: 1px solid #e5e7eb;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.header-inner {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
}
.site-logo img {
height: 60px;
width: auto;
max-width: 200px;
}
.header-phone {
display: flex;
align-items: center;
gap: 0.5rem;
color: #0073aa;
font-size: 18px;
font-family: Arial, sans-serif;
font-weight: 600;
}
.header-phone a {
color: inherit;
text-decoration: none;
}
.menu-toggle {
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
}
.menu-toggle span {
display: block;
width: 25px;
height: 3px;
background-color: #0073aa;
margin: 5px 0;
transition: 0.3s;
}
.hero-banner {
min-height: 400px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
background-size: cover;
background-position: center;
}
.hero-banner::before {
content: "";
position: absolute;
inset: 0;
background-color: rgba(0, 0, 0, 0.4);
}
.hero-content {
position: relative;
z-index: 1;
max-width: 800px;
padding: 2rem;
}
.hero-title {
font-size: 48px;
font-family: Arial, sans-serif;
color: #ffffff;
margin-bottom: 1.5rem;
font-weight: 700;
}
.hero-cta {
margin-top: 2rem;
}
.hero-cta-button {
display: inline-block;
padding: 0.875rem 2rem;
text-decoration: none;
transition: all 0.3s ease;
}
.hero-cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.site-content {
max-width: 1200px;
margin: 3rem auto;
padding: 0 2rem;
}
.site-footer {
background-color: #000000;
color: #ffffff;
padding: 2rem;
text-align: center;
}
.footer-copyright {
margin-bottom: 0.5rem;
}
.footer-address {
font-size: 0.875rem;
opacity: 0.8;
}  @media (max-width: 768px) {
.hero-title {
font-size: 2rem;
}
.header-inner {
padding: 0 1rem;
}
.site-logo img {
max-height: 40px;
}
}