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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-right a {
    font-size: 15px;
    font-weight: 500;
    color: #4a4a4a;
}

.ad-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.5px;
    background-color: #f5f5f5;
    padding: 4px 12px;
    border-radius: 3px;
}

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

.hero-left,
.hero-right {
    flex: 1;
}

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

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

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

.hero-right {
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c2c2c;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #2c2c2c;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #2c2c2c;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c2c2c;
    color: #ffffff;
    opacity: 1;
}

.philosophy-split {
    display: flex;
    margin: 80px 0;
}

.phil-image,
.phil-text {
    flex: 1;
}

.phil-image {
    overflow: hidden;
}

.phil-image img {
    width: 100%;
    height: 100%;
}

.phil-text {
    padding: 80px 70px;
    background-color: #ffffff;
}

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

.phil-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.services-intro {
    text-align: center;
    padding: 60px 20px 40px;
}

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

.intro-text {
    font-size: 18px;
    color: #666;
}

.service-block-left,
.service-block-right {
    display: flex;
    margin-bottom: 60px;
}

.service-content,
.service-image {
    flex: 1;
}

.service-content {
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

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

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

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

.btn-select-service {
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.service-image {
    overflow: hidden;
}

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

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

.cta-centered {
    text-align: center;
    padding: 80px 20px;
    background-color: #f0ede8;
    margin: 60px 0;
}

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

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

.form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding: 0 40px;
}

.form-left,
.form-right {
    flex: 1;
}

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

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

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    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: #2c2c2c;
}

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

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

.footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

.footer-section {
    flex: 1;
}

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

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 2;
    display: block;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2c2c2c;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

.cookie-content p {
    font-size: 15px;
    color: #4a4a4a;
    flex: 1;
}

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

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

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

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

.btn-cookie-reject {
    background-color: transparent;
    color: #2c2c2c;
    border: 1px solid #d0d0d0;
}

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

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

.about-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 70px;
    background-color: #f8f6f3;
}

.about-hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-hero-text p {
    font-size: 20px;
    color: #666;
    max-width: 500px;
}

.about-hero-image {
    flex: 1;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
}

.story-section {
    padding: 80px 0;
}

.story-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

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

.values-split {
    display: flex;
    margin-bottom: 60px;
}

.value-block {
    flex: 1;
    background-color: #f0ede8;
    padding: 60px 50px;
}

.value-block:nth-child(2) {
    background-color: #e8e4df;
}

.value-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.value-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.team-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.team-grid {
    display: flex;
    gap: 40px;
}

.team-member {
    flex: 1;
    padding: 30px;
    background-color: #fafafa;
    border-radius: 4px;
}

.team-member h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.role {
    font-size: 14px;
    color: #888;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.process-split {
    display: flex;
    margin: 60px 0;
}

.process-image,
.process-text {
    flex: 1;
}

.process-image {
    overflow: hidden;
}

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

.process-text {
    padding: 60px 70px;
    background-color: #ffffff;
}

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

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

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

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

.cta-about {
    text-align: center;
    padding: 80px 20px;
    background-color: #2c2c2c;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.services-page-hero {
    text-align: center;
    padding: 80px 20px;
    background-color: #f8f6f3;
}

.services-page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

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

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

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

.service-detail-content {
    padding: 60px 70px;
    background-color: #ffffff;
}

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

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

.service-detail-content h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.service-detail-content ul {
    margin-bottom: 28px;
    padding-left: 20px;
}

.service-detail-content li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.7;
}

.price-highlight {
    font-size: 32px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 24px;
}

.service-detail-image {
    overflow: hidden;
}

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

.additional-services {
    padding: 80px 0;
    background-color: #fafafa;
}

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

.services-grid {
    display: flex;
    gap: 40px;
}

.service-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 4px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

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

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

.contact-hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f6f3;
}

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

.contact-hero p {
    font-size: 19px;
    color: #666;
}

.contact-info-split {
    display: flex;
    margin: 60px 0;
}

.contact-left,
.contact-right {
    flex: 1;
}

.contact-left {
    padding: 60px 70px;
    background-color: #ffffff;
}

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

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

.contact-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c2c2c;
    font-weight: 600;
}

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

.contact-right {
    overflow: hidden;
}

.contact-right img {
    width: 100%;
    height: 100%;
}

.location-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.location-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.location-section > p {
    text-align: center;
    font-size: 17px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.location-details {
    display: flex;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.location-item {
    flex: 1;
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 4px;
}

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

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

.contact-cta {
    text-align: center;
    padding: 80px 20px;
    background-color: #f0ede8;
}

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

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

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-color: #fafafa;
}

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

.thanks-content {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 4px;
    text-align: center;
}

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

.thanks-main {
    font-size: 20px;
    color: #2c2c2c;
    margin-bottom: 28px;
}

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

.thanks-details p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
}

.thanks-next {
    text-align: left;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8f6f3;
    border-radius: 4px;
}

.thanks-next h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.thanks-next ol {
    padding-left: 20px;
}

.thanks-next li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

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

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

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

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

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

.legal-container h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

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

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-container li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-split,
    .philosophy-split,
    .service-block-left,
    .service-block-right,
    .form-container-split,
    .about-hero-split,
    .values-split,
    .team-grid,
    .process-split,
    .service-detail-split,
    .services-grid,
    .contact-info-split,
    .location-details {
        flex-direction: column;
    }

    .service-block-right {
        flex-direction: column;
    }

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

    .nav-right {
        gap: 16px;
        font-size: 14px;
    }

    .ad-label {
        display: none;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}