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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    display: flex;
    min-height: 100vh;
}

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 240px;
    height: 100vh;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 2rem 1.5rem;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.nav-disclaimer {
    font-size: 0.7rem;
    color: #ffd700;
    margin-bottom: 2rem;
    padding: 0.3rem 0.5rem;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 3px;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-links li a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    padding: 0.7rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    background-color: #333333;
    color: #ffffff;
}

.main-content {
    margin-left: 240px;
    flex: 1;
    width: calc(100% - 240px);
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: center;
}

.hero-text {
    flex: 1;
    padding: 4rem 5rem;
    background-color: #f8f9fa;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555555;
    max-width: 600px;
}

.cta-link {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #1a252f;
}

.hero-image {
    flex: 1;
    min-height: 600px;
}

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

.split-layout {
    display: flex;
    align-items: center;
    min-height: 500px;
}

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

.split-text {
    flex: 1;
    padding: 4rem 5rem;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.split-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.split-text p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.8;
}

.split-image {
    flex: 1;
    min-height: 500px;
}

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

.services-intro {
    padding: 4rem 5rem;
    background-color: #ffffff;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-centered p {
    font-size: 1.2rem;
    color: #666666;
}

.price-indicator {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 1.5rem 0;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #2c3e50;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1a252f;
}

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

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.process-section {
    padding: 5rem;
    background-color: #f8f9fa;
}

.process-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.process-grid {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.process-step {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.process-step p {
    color: #555555;
    line-height: 1.7;
}

.testimonial-section {
    padding: 5rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonial-content blockquote {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-content cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.8;
}

.materials-section {
    background-color: #ffffff;
}

.cta-section-inline {
    padding: 5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-section-inline h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section-inline p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.additional-services {
    padding: 4rem 5rem;
    background-color: #f8f9fa;
}

.additional-services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.warranty-section {
    padding: 4rem 5rem;
    background-color: #ffffff;
}

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

.warranty-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555555;
}

.disclaimer-section {
    padding: 3rem 5rem;
    background-color: #f8f9fa;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666666;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 3rem 5rem 2rem;
}

.footer-columns {
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-column p {
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #666666;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #1a1a1a;
}

.modal-content h2 {
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 999;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-header {
    padding: 5rem 5rem 3rem;
    background-color: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-header p {
    font-size: 1.3rem;
    color: #666666;
}

.service-detail {
    margin-bottom: 0;
}

.price-box {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 0.3rem;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #888888;
    margin: 0;
}

.included-services {
    padding: 5rem;
    background-color: #ffffff;
}

.included-services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.included-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.included-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.included-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.included-item p {
    color: #555555;
    line-height: 1.6;
}

.team-section {
    padding: 5rem;
    background-color: #f8f9fa;
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: #1a1a1a;
}

.team-role {
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-member p {
    color: #555555;
    line-height: 1.6;
}

.philosophy-section {
    padding: 5rem;
    background-color: #ffffff;
}

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

.value-item {
    margin-bottom: 3rem;
}

.value-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
}

.workshop-section {
    background-color: #f8f9fa;
}

.sustainability-section {
    background-color: #ffffff;
}

.awards-section {
    padding: 5rem;
    background-color: #f8f9fa;
    text-align: center;
}

.awards-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.awards-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1.5rem;
}

.contact-content {
    padding: 3rem 5rem;
}

.contact-split {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.directions-section {
    padding: 4rem 5rem;
    background-color: #f8f9fa;
}

.directions-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.directions-grid {
    display: flex;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.direction-item {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.direction-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.direction-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1rem;
}

.visit-section {
    padding: 4rem 5rem;
    background-color: #ffffff;
}

.visit-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.visit-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1.5rem;
}

.faq-section {
    padding: 4rem 5rem;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-item {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
}

.thanks-section {
    padding: 5rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #555555;
}

.thanks-info {
    margin: 2rem 0;
}

.selected-service {
    font-size: 1.2rem;
    color: #2c3e50;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2c3e50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-text p {
    color: #555555;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.legal-content {
    padding: 4rem 5rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.last-updated {
    font-size: 0.95rem;
    color: #888888;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #555555;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #555555;
}

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

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

@media (max-width: 1024px) {
    .sidebar-nav {
        width: 200px;
        padding: 1.5rem 1rem;
    }

    .main-content {
        margin-left: 200px;
        width: calc(100% - 200px);
    }

    .hero-split,
    .split-layout {
        flex-direction: column;
    }

    .split-reverse {
        flex-direction: column;
    }

    .hero-text,
    .split-text {
        padding: 3rem;
    }

    .process-grid {
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 calc(50% - 1rem);
    }

    .contact-split {
        flex-direction: column;
    }

    .directions-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .sidebar-nav {
        width: 100%;
        height: auto;
        position: relative;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text,
    .split-text {
        padding: 2rem;
    }

    .process-section,
    .services-intro,
    .additional-services {
        padding: 3rem 2rem;
    }

    .process-step {
        flex: 1 1 100%;
    }

    .footer-columns {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .included-item,
    .team-member {
        flex: 1 1 100%;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

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