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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
}

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

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

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

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

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

.nav-menu a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #6b4e3d;
}

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

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

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

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background: #e8e4df;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #6b4e3d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #553d2f;
}

.intro-split {
    display: flex;
    align-items: center;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    background: #d9d5d0;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-content {
    flex: 1;
    padding: 80px 60px;
}

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.services-overview {
    padding: 100px 60px;
    background: #f9f9f9;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-header p {
    font-size: 18px;
    color: #666;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    height: 240px;
    background: #e0dcd7;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #6b4e3d;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px 28px;
    background: #6b4e3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #553d2f;
}

.process-split {
    display: flex;
    background: #ffffff;
}

.process-content {
    flex: 1;
    padding: 80px 60px;
}

.process-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #6b4e3d;
    min-width: 60px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

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

.process-image {
    flex: 1;
    background: #d4cfc9;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-section {
    padding: 100px 60px;
    background: #f4f2f0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-container > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6b4e3d;
}

.btn-submit {
    padding: 16px 36px;
    background: #6b4e3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #553d2f;
}

.trust-split {
    display: flex;
    align-items: center;
    background: #ffffff;
}

.trust-split.reverse {
    flex-direction: row-reverse;
}

.trust-image {
    flex: 1;
    background: #ddd9d4;
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-content {
    flex: 1;
    padding: 80px 60px;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefits-list li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    padding-left: 28px;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6b4e3d;
    font-weight: 700;
}

.main-footer {
    background: #2a2a2a;
    color: #d4d4d4;
    padding: 60px 40px 30px;
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #b4b4b4;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: #b4b4b4;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.footer-bottom .disclaimer {
    font-size: 13px;
    color: #999;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 24px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
}

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

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

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

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

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

.btn-accept {
    background: #6b4e3d;
    color: #ffffff;
}

.btn-accept:hover {
    background: #553d2f;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #666;
}

.btn-reject:hover {
    background: #333;
}

.page-hero {
    text-align: center;
    padding: 100px 40px 60px;
    background: linear-gradient(135deg, #f4f2f0 0%, #e8e4df 100%);
}

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

.page-hero p {
    font-size: 20px;
    color: #666;
}

.about-split {
    display: flex;
    align-items: center;
    background: #ffffff;
}

.about-content {
    flex: 1;
    padding: 80px 60px;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background: #d9d5d0;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.team-split {
    display: flex;
    align-items: center;
    background: #ffffff;
}

.team-split.reverse {
    flex-direction: row-reverse;
}

.team-image {
    flex: 1;
    background: #ddd9d4;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-content {
    flex: 1;
    padding: 80px 60px;
}

.team-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.team-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.materials-section {
    padding: 100px 60px;
    background: #f4f2f0;
}

.materials-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.materials-split {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.materials-content {
    flex: 1;
}

.materials-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.materials-image {
    flex: 1;
    background: #d4cfc9;
}

.materials-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.service-detail {
    padding: 80px 60px;
    background: #ffffff;
}

.service-detail.reverse {
    background: #f9f9f9;
}

.service-detail-split {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-detail-image {
    flex: 1;
    background: #e0dcd7;
    border-radius: 6px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    font-size: 15px;
    color: #666;
    padding-left: 24px;
    position: relative;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6b4e3d;
    font-weight: 700;
    font-size: 20px;
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 30px 0;
}

.price-label {
    font-size: 14px;
    color: #666;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #6b4e3d;
}

.additional-services {
    padding: 100px 60px;
    background: #f9f9f9;
}

.additional-services h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.additional-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.additional-item {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.additional-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.additional-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.additional-item .price {
    font-size: 20px;
    font-weight: 700;
    color: #6b4e3d;
}

.cta-section {
    text-align: center;
    padding: 100px 40px;
    background: linear-gradient(135deg, #6b4e3d 0%, #553d2f 100%);
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-section p {
    font-size: 18px;
    color: #e8e4df;
    margin-bottom: 32px;
}

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

.contact-info {
    flex: 1;
    padding-right: 60px;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-block {
    margin-bottom: 36px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.email-display {
    color: #555;
    font-weight: 500;
}

.contact-map {
    flex: 1;
    position: relative;
    background: #e0dcd7;
    border-radius: 6px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 24px;
}

.map-overlay p {
    font-size: 14px;
    line-height: 1.6;
}

.working-philosophy {
    padding: 100px 60px;
    background: #f9f9f9;
}

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

.philosophy-split {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.philosophy-image {
    flex: 1;
    background: #d9d5d0;
    border-radius: 6px;
    overflow: hidden;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-page {
    padding: 60px 40px 100px;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 44px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.legal-container ul {
    margin: 16px 0 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.legal-container a {
    color: #6b4e3d;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.no-link {
    color: #555;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #f4f4f4;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 15px;
    color: #555;
}

.thanks-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, #f9f9f9 0%, #f4f2f0 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #6b4e3d;
    color: #ffffff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.selected-service-info {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #555;
}

.next-steps {
    text-align: left;
    margin: 40px 0;
}

.next-steps h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.next-steps ol {
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.next-steps li {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary {
    background: #6b4e3d;
    color: #ffffff;
}

.btn-primary:hover {
    background: #553d2f;
}

.btn-secondary {
    background: transparent;
    color: #6b4e3d;
    border: 2px solid #6b4e3d;
}

.btn-secondary:hover {
    background: #f4f2f0;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .process-split,
    .trust-split,
    .about-split,
    .team-split,
    .materials-split,
    .philosophy-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .trust-split.reverse,
    .team-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .process-content,
    .trust-content,
    .about-content,
    .team-content,
    .contact-info {
        padding: 40px 30px;
    }

    .hero-image,
    .intro-image,
    .process-image,
    .trust-image,
    .about-image,
    .team-image,
    .materials-image,
    .philosophy-image,
    .service-detail-image,
    .contact-map {
        min-height: 300px;
    }

    .service-cards {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .values-grid,
    .additional-grid {
        flex-direction: column;
    }

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

    .nav-menu {
        gap: 20px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}