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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #234738;
}

.btn-reject {
    background: #e0e0e0;
    color: #2a2a2a;
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f4f;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ad-notice {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    border: 1px solid #ddd;
    padding: 4px 10px;
    border-radius: 3px;
}

.header-right a {
    color: #2a2a2a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-right a:hover {
    color: #2c5f4f;
}

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

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

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

.hero-lead {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-right {
    flex: 1;
    background: #f0f0f0;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #2c5f4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #234738;
    transform: translateY(-2px);
}

.intro-section,
.techniques-section,
.materials-section {
    padding: 80px 40px;
}

.intro-split,
.techniques-split,
.about-split,
.philosophy-split,
.values-split,
.materials-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-image,
.techniques-image,
.about-image,
.philosophy-image,
.values-image,
.materials-image {
    flex: 1;
    background: #e8e8e8;
}

.intro-image img,
.techniques-image img,
.about-image img,
.philosophy-image img,
.values-image img,
.materials-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-text,
.techniques-text,
.about-text,
.philosophy-text,
.values-text,
.materials-text {
    flex: 1;
}

.intro-text h2,
.techniques-text h2,
.about-text h2,
.philosophy-text h2,
.values-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-text p,
.techniques-text p,
.about-text p,
.philosophy-text p,
.values-text p {
    font-size: 17px;
    color: #444;
    margin-bottom: 16px;
}

.techniques-section {
    background: #f9f9f9;
}

.link-arrow {
    color: #2c5f4f;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: #234738;
    transform: translateX(4px);
}

.services-preview {
    padding: 80px 40px;
    background: #ffffff;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

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

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

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 200px;
    background: #e0e0e0;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin: 24px 24px 12px;
}

.service-card p {
    font-size: 15px;
    color: #555;
    margin: 0 24px 12px;
    line-height: 1.5;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #2c5f4f;
    margin: 16px 24px;
}

.btn-select {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px;
    background: #2c5f4f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #234738;
}

.form-section {
    padding: 80px 40px;
    background: #f5f5f5;
}

.form-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
}

.form-left {
    flex: 1;
}

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

.form-left p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.form-right {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2a2a2a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #2c5f4f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #234738;
}

.materials-section {
    background: #f9f9f9;
}

.materials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.materials-list {
    list-style: none;
    padding-left: 0;
}

.materials-list li {
    padding: 12px 0 12px 32px;
    font-size: 17px;
    color: #444;
    position: relative;
}

.materials-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f4f;
    font-weight: 700;
}

.footer {
    background: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 40px 20px;
}

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

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

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

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

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

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

.footer-col p {
    color: #d0d0d0;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.footer-disclaimer p {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
}

.page-hero {
    background: #2c5f4f;
    padding: 80px 40px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 20px;
    color: #d0e8df;
}

.about-split,
.philosophy-split,
.values-split {
    padding: 80px 40px;
}

.about-split {
    background: #ffffff;
}

.philosophy-section {
    background: #f9f9f9;
    padding: 80px 40px;
}

.team-section {
    padding: 80px 40px;
    background: #ffffff;
    text-align: center;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

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

.team-content p {
    font-size: 17px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 40px;
    background: #f9f9f9;
}

.services-detail {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    background: #ffffff;
    margin-bottom: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-split {
    display: flex;
    gap: 60px;
}

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

.service-detail-image {
    flex: 1;
    background: #e8e8e8;
}

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

.service-detail-content {
    flex: 1;
    padding: 40px;
}

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

.service-duration {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

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

.service-detail-content ul {
    margin: 24px 0;
    padding-left: 20px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    color: #555;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f4f;
    margin: 24px 0;
}

.contact-section {
    padding: 60px 40px;
    background: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

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

.contact-block h3 {
    font-size: 18px;
    color: #2c5f4f;
    margin-bottom: 8px;
}

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

.contact-block .note {
    font-size: 14px;
    color: #666;
    margin-top: 12px;
    font-style: italic;
}

.contact-image {
    flex: 1;
    background: #e8e8e8;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.directions-section,
.faq-section {
    padding: 60px 40px;
}

.directions-section {
    background: #f9f9f9;
}

.directions-section h2,
.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.directions-content {
    max-width: 800px;
    margin: 0 auto;
}

.directions-text h3 {
    font-size: 20px;
    color: #2c5f4f;
    margin-bottom: 12px;
    margin-top: 24px;
}

.directions-text p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.thanks-section {
    padding: 100px 40px;
    background: #ffffff;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 32px;
}

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

.thanks-lead {
    font-size: 20px;
    color: #2c5f4f;
    margin-bottom: 32px;
    font-weight: 600;
}

.thanks-details {
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-confirmation {
    font-weight: 600;
    color: #2c5f4f;
    font-size: 18px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #234738;
}

.btn-secondary {
    background: #f0f0f0;
    color: #2a2a2a;
}

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

.next-steps {
    padding: 80px 40px;
    background: #f9f9f9;
}

.next-steps h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.steps-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
}

.step-card {
    flex: 1;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2c5f4f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

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

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

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

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

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

.legal-container h3 {
    font-size: 20px;
    color: #2c5f4f;
    margin-top: 24px;
    margin-bottom: 12px;
}

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

.legal-container ul {
    margin: 16px 0 16px 24px;
}

.legal-container ul li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.6;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table th,
.cookies-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.cookies-table th {
    background: #f5f5f5;
    font-weight: 600;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 16px;
    }

    .hero-split,
    .intro-split,
    .techniques-split,
    .about-split,
    .philosophy-split,
    .values-split,
    .materials-split,
    .contact-split,
    .form-container {
        flex-direction: column;
    }

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

    .services-grid,
    .steps-grid {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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