* {
    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: #2c3e50;
    background: #ffffff;
}

.ad-notice {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8b4513;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f7f4;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #8b4513;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    width: fit-content;
}

.cta-button:hover {
    background: #6d3410;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.intro-statement {
    padding: 100px 40px;
    background: #ffffff;
}

.statement-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.9;
    color: #2c3e50;
    font-weight: 400;
}

.services-preview {
    padding: 100px 40px;
    background: #fafafa;
}

.section-header-left {
    max-width: 700px;
    margin-bottom: 70px;
}

.section-header-left h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-header-left p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.service-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 50px;
    align-items: stretch;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 350px;
    background-color: #e5e7eb;
}

.service-details {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-details p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 25px;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 25px;
}

.select-service {
    padding: 14px 32px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: fit-content;
}

.select-service:hover {
    background: #1a252f;
}

.process-overview {
    padding: 100px 0;
    background: #ffffff;
}

.process-split {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
}

.process-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 600px;
    background-color: #e5e7eb;
}

.process-content {
    flex: 1;
    padding: 60px 70px;
    background: #f8f7f4;
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.inquiry-form-section {
    padding: 100px 40px;
    background: #2c3e50;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;
}

.form-container > p {
    font-size: 1.1rem;
    color: #cbd5e0;
    text-align: center;
    margin-bottom: 50px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    flex: 1;
    padding: 16px;
    border: 1px solid #4a5568;
    border-radius: 4px;
    font-size: 1rem;
    background: #ffffff;
    color: #2c3e50;
}

.inquiry-form textarea {
    resize: vertical;
}

.submit-btn {
    padding: 18px 40px;
    background: #8b4513;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #6d3410;
}

.main-footer {
    background: #1a252f;
    color: #cbd5e0;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column p {
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2c3e50;
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a252f;
    padding: 25px 40px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    color: #cbd5e0;
    flex: 1;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-btn.accept {
    background: #8b4513;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #6d3410;
}

.cookie-btn.reject {
    background: #4a5568;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #2c3e50;
}

.cookie-link {
    color: #cbd5e0;
    text-decoration: underline;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.7;
}

.thanks-container a {
    display: inline-block;
    padding: 16px 40px;
    background: #8b4513;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.thanks-container a:hover {
    background: #6d3410;
}

.page-content {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.page-content h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.page-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-split {
    display: flex;
    gap: 80px;
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.detail-block h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.detail-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.contact-map {
    flex: 1;
    background: #e5e7eb;
    border-radius: 8px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .hero-split,
    .service-card,
    .service-card.reverse,
    .process-split,
    .footer-content,
    .contact-split {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        gap: 20px;
    }
}