{
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: #fff;
padding: 0;
margin: 0;
}
header {
background: #f8f8f8;
border-bottom: 1px solid #ddd;
padding: 1rem 0;
}
nav {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
nav ul {
list-style: none;
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
margin: 0;
padding: 0;
}
nav ul li {
display: inline;
}
nav a {
color: #333;
text-decoration: none;
font-size: 0.95rem;
}
nav a:hover {
text-decoration: underline;
}
.language-toggle {
font-size: 0.9rem;
color: #666;
}
.language-toggle span {
font-weight: 600;
color: #333;
}
.language-toggle a {
color: #0066cc;
text-decoration: none;
}
.language-toggle a:hover {
text-decoration: underline;
}
.hero {
position: relative;
width: 100%;
height: 60vh;
min-height: 320px;
max-height: 720px;
overflow: hidden;
margin-bottom: 2rem;
}
.hero img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}
.hero-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
text-align: center;
color: #fff;
background: rgba(0, 0, 0, 0.5);
padding: 2rem;
border-radius: 8px;
max-width: 90%;
}
.hero-text h1 {
font-size: 2rem;
font-weight: 600;
line-height: 1.3;
margin-bottom: 1rem;
color: #fff;
}
.hero-text p {
font-size: 1rem;
line-height: 1.6;
margin-bottom: 0;
color: #fff;
}
main {
max-width: 800px;
margin: 0 auto;
padding: 2rem 1rem;
}
section {
margin-bottom: 2rem;
}
h1 {
font-size: 1.75rem;
font-weight: 600;
line-height: 1.3;
margin-bottom: 1.5rem;
color: #222;
}
h2 {
font-size: 1.5rem;
font-weight: 600;
line-height: 1.3;
margin-bottom: 1.25rem;
color: #222;
}
p {
margin-bottom: 1rem;
font-size: 1rem;
line-height: 1.7;
}
.inquiry-form {
max-width: 600px;
margin: 2rem auto;
}
.form-group {
margin-bottom: 1.25rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 500;
color: #333;
font-size: 0.95rem;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group textarea {
width: 100%;
padding: 0.75rem;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 1rem;
font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: #0066cc;
}
.form-group textarea {
resize: vertical;
}
.form-group button {
background: #0066cc;
color: #fff;
padding: 0.875rem 2rem;
border: none;
border-radius: 4px;
font-size: 1rem;
font-weight: 500;
cursor: pointer;
}
.form-group button:hover {
background: #0052a3;
}
.form-message {
padding: 1rem;
border-radius: 4px;
margin-bottom: 1.5rem;
font-size: 0.95rem;
}
.form-message.success {
background: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}
.form-message.error {
background: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
}
.g-recaptcha {
margin-top: 0.5rem;
}
footer {
background: #f8f8f8;
border-top: 1px solid #ddd;
padding: 2rem 1rem;
text-align: center;
font-size: 0.9rem;
color: #666;
margin-top: 3rem;
}
@media (max-width: 768px) {
nav {
flex-direction: column;
gap: 1rem;
}
nav ul {
flex-direction: column;
gap: 0.75rem;
text-align: center;
}
.language-toggle {
margin-top: 0.5rem;
}
.hero {
height: 50vh;
min-height: 280px;
}
.hero-text {
padding: 1.5rem;
}
.hero-text h1 {
font-size: 1.5rem;
}
.hero-text p {
font-size: 0.9rem;
}
h1 {
font-size: 1.5rem;
}
h2 {
font-size: 1.35rem;
}
main {
padding: 1.5rem 1rem;
}
}