* {
    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: #2c2c2c;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background-color: #ffffff;
}

.hero-content {
    max-width: 520px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    min-height: 600px;
    background-color: #e5e5e5;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.2s;
}

.cta-primary:hover {
    background-color: #1a1a1a;
    cursor: pointer;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 16px;
    border: 2px solid #2c2c2c;
    transition: all 0.2s;
}

.cta-secondary:hover {
    background-color: #2c2c2c;
    color: #ffffff;
    cursor: pointer;
}

.intro-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.3;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 17px;
    color: #5a5a5a;
    line-height: 1.8;
}

.intro-image {
    flex: 0.8;
    background-color: #e5e5e5;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.services-split {
    padding: 80px 60px;
    background-color: #f5f5f5;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header-center h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 18px;
    color: #6a6a6a;
}

.service-row {
    display: flex;
    margin-bottom: 60px;
    background-color: #ffffff;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

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

.service-visual {
    flex: 1;
    min-height: 400px;
    background-color: #d5d5d5;
}

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

.service-details h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-details p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.price-tag {
    font-size: 28px;
    font-weight: 600;
    color: #2c2c2c;
    margin: 24px 0;
}

.select-service {
    padding: 14px 28px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
    align-self: flex-start;
}

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

.values-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.value-card {
    flex: 1;
    max-width: 350px;
}

.value-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
}

.form-section {
    padding: 100px 60px;
    background-color: #f9f9f9;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
}

.form-wrapper h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-wrapper > p {
    font-size: 16px;
    color: #6a6a6a;
    margin-bottom: 40px;
    line-height: 1.6;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    background-color: #fafafa;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c2c2c;
    background-color: #ffffff;
}

.submit-btn {
    padding: 16px 32px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 16px;
}

.submit-btn:hover {
    background-color: #1a1a1a;
}

.main-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 60px 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px !important;
    color: #777 !important;
    line-height: 1.5;
    margin-top: 16px !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 24px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-btn.accept {
    background-color: #2c2c2c;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #1a1a1a;
}

.cookie-btn.reject {
    background-color: #e8e8e8;
    color: #2c2c2c;
}

.cookie-btn.reject:hover {
    background-color: #d0d0d0;
}

.about-hero {
    padding: 120px 60px 80px;
    background-color: #f5f5f5;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 52px;
    font-weight: 600;
    color: #1a1a1a;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.2;
}

.about-story-split {
    display: flex;
    gap: 80px;
    padding: 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 17px;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    background-color: #e5e5e5;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.philosophy-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.philosophy-content {
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.philosophy-split {
    display: flex;
    gap: 80px;
    align-items: center;
}

.philosophy-left {
    flex: 1;
}

.philosophy-left h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.philosophy-left p {
    font-size: 17px;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.philosophy-right {
    flex: 1;
    background-color: #e5e5e5;
}

.philosophy-right img {
    width: 100%;
    height: auto;
    display: block;
}

.process-section {
    padding: 100px 60px;
    background-color: #f9f9f9;
}

.process-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.process-wrapper h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    gap: 40px;
}

.step-item {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 32px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 16px;
}

.step-item h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.7;
}

.team-visual {
    min-height: 500px;
}

.team-image-block {
    min-height: 500px;
    position: relative;
    background-color: #d5d5d5;
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 80px 60px 60px;
    color: #ffffff;
}

.team-overlay h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    max-width: 800px;
}

.team-overlay p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 700px;
}

.sustainability-split {
    display: flex;
    gap: 80px;
    padding: 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.sustainability-text {
    flex: 1;
}

.sustainability-text h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.sustainability-text p {
    font-size: 17px;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sustainability-image {
    flex: 1;
    background-color: #e5e5e5;
}

.sustainability-image img {
    width: 100%;
    height: auto;
    display: block;
}

.services-page-hero {
    padding: 120px 60px 80px;
    background-color: #f5f5f5;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 52px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.services-page-hero p {
    font-size: 18px;
    color: #6a6a6a;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 80px 60px;
}

.service-card-full {
    display: flex;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
    margin-bottom: 80px;
}

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

.service-image-large {
    flex: 1;
    background-color: #e5e5e5;
}

.service-image-large img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content-detailed {
    flex: 1;
    padding: 60px;
}

.service-content-detailed h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-content-detailed p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-content-detailed h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.service-content-detailed ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.service-content-detailed ul li {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 8px;
}

.price-display {
    font-size: 32px;
    font-weight: 600;
    color: #2c2c2c;
    margin: 32px 0 24px;
}

.services-cta {
    padding: 80px 60px;
    background-color: #f9f9f9;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-cta p {
    font-size: 17px;
    color: #6a6a6a;
    margin-bottom: 32px;
}

.contact-page-hero {
    padding: 120px 60px 80px;
    background-color: #f5f5f5;
    text-align: center;
}

.contact-page-hero h1 {
    font-size: 52px;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-layout {
    display: flex;
    padding: 80px 60px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.info-item {
    margin-bottom: 40px;
}

.info-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.info-item p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
}

.email-display {
    color: #2c2c2c !important;
    font-weight: 500;
}

.note {
    font-size: 14px !important;
    color: #888 !important;
    margin-top: 8px;
}

.contact-visual {
    flex: 1;
    background-color: #e5e5e5;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.visit-section {
    padding: 80px 60px;
    background-color: #f9f9f9;
    max-width: 1000px;
    margin: 0 auto;
}

.visit-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.visit-section p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 16px;
}

.thanks-section {
    padding: 120px 60px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 18px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-confirmation {
    background-color: #f5f5f5;
    padding: 24px;
    margin: 32px 0;
    font-size: 16px;
    color: #2c2c2c;
    font-weight: 500;
}

.legal-page {
    padding: 80px 60px;
    min-height: 500px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.update-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #3a3a3a;
}

.legal-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.legal-content p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: #2c2c2c;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-asymmetric,
    .service-row,
    .about-story-split,
    .philosophy-split,
    .sustainability-split,
    .service-card-full,
    .contact-layout,
    .process-steps,
    .values-grid {
        flex-direction: column;
    }

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

    .nav-container {
        padding: 16px 20px;
    }

    .hero-left,
    .service-details,
    .form-wrapper,
    .service-content-detailed {
        padding: 40px 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}