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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #a67c52;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --background-light: #f9f6f2;
    --white: #ffffff;
    --border-color: #e0d8cc;
}

body {
    font-family: 'Georgia', 'Palatino', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--white);
}

.ad-disclosure {
    background-color: var(--background-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.brand {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hero-minimal {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.hero-content {
    max-width: 900px;
    margin-bottom: 80px;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-light);
    font-weight: 300;
}

.hero-image {
    width: 100%;
    overflow: hidden;
    background-color: var(--background-light);
}

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

.intro-wide {
    background-color: var(--background-light);
    padding: 100px 40px;
    margin: 120px 0;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.large-text {
    font-size: 28px;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 300;
}

.service-preview {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 0;
    background-color: var(--background-light);
}

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

.service-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 36px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-info p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.price {
    font-size: 32px;
    font-weight: 600;
    color: var(--accent-color);
    display: block;
    margin-bottom: 30px;
}

.cta-button {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: var(--accent-color);
}

.philosophy-section {
    max-width: 1400px;
    margin: 150px auto;
    padding: 0 40px;
}

.philosophy-layout {
    display: flex;
    gap: 100px;
    align-items: center;
}

.philosophy-text {
    flex: 1;
    min-width: 0;
}

.philosophy-text h2 {
    font-size: 48px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 40px;
    line-height: 1.3;
}

.philosophy-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.text-link {
    font-size: 18px;
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--primary-color);
}

.philosophy-visual {
    flex: 1;
    min-width: 0;
    background-color: var(--background-light);
}

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

.process-section {
    background-color: var(--background-light);
    padding: 120px 40px;
    margin: 150px 0;
}

.process-section h2 {
    max-width: 1400px;
    margin: 0 auto 80px auto;
    font-size: 48px;
    font-weight: 400;
    color: var(--primary-color);
    text-align: center;
}

.process-steps {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.step {
    flex: 1;
    min-width: 0;
}

.step-number {
    font-size: 72px;
    font-weight: 300;
    color: var(--accent-color);
    margin-bottom: 30px;
    opacity: 0.5;
}

.step h3 {
    font-size: 28px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-form-section {
    max-width: 800px;
    margin: 150px auto;
    padding: 0 40px;
}

.form-container h2 {
    font-size: 48px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.form-group label {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    font-family: inherit;
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.submit-button {
    padding: 18px 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: var(--accent-color);
}

.disclaimer-section {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 40px;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
    padding: 30px;
    background-color: var(--background-light);
    border-left: 3px solid var(--accent-color);
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 40px 30px 40px;
    margin-top: 150px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
    min-width: 0;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 2px solid var(--border-color);
    padding: 30px 40px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: var(--accent-color);
}

.cookie-reject {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.cookie-reject:hover {
    background-color: var(--background-light);
}

.page-hero {
    max-width: 1400px;
    margin: 80px auto 100px auto;
    padding: 0 40px;
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 400;
    color: var(--primary-color);
}

.about-content {
    max-width: 1400px;
    margin: 0 auto 150px auto;
    padding: 0 40px;
}

.about-text-wide {
    max-width: 1000px;
    margin: 0 auto 100px auto;
}

.about-split {
    display: flex;
    gap: 80px;
    margin-bottom: 120px;
}

.about-column {
    flex: 1;
    min-width: 0;
}

.about-column h2 {
    font-size: 42px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.about-column p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.about-image {
    background-color: var(--background-light);
}

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

.values-section {
    margin-bottom: 120px;
}

.values-section h2 {
    font-size: 42px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

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

.value-item h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.experience-section {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.experience-image {
    flex: 1;
    min-width: 0;
    background-color: var(--background-light);
}

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

.experience-text {
    flex: 1;
    min-width: 0;
}

.experience-text h2 {
    font-size: 42px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

.experience-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.approach-section {
    max-width: 900px;
}

.approach-section h2 {
    font-size: 42px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.approach-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.services-intro {
    max-width: 1000px;
    margin: 60px auto 100px auto;
    padding: 0 40px;
    text-align: center;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-detail {
    display: flex;
    gap: 80px;
    margin-bottom: 120px;
    align-items: flex-start;
}

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

.service-detail-content {
    flex: 1;
    min-width: 0;
}

.service-detail-content h2 {
    font-size: 42px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.service-detail-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin: 30px 0;
}

.service-features li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 20px;
}

.service-pricing {
    margin: 30px 0;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
}

.service-detail-image {
    flex: 1;
    min-width: 0;
    background-color: var(--background-light);
}

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

.service-note {
    max-width: 1000px;
    margin: 80px auto 150px auto;
    padding: 0 40px;
}

.note-content {
    background-color: var(--background-light);
    padding: 40px;
    border-left: 4px solid var(--accent-color);
}

.note-content h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.note-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-page-content {
    max-width: 1400px;
    margin: 0 auto 150px auto;
    padding: 0 40px;
}

.contact-info-layout {
    display: flex;
    gap: 80px;
    margin-bottom: 100px;
}

.contact-details {
    flex: 1;
    min-width: 0;
}

.contact-details h2 {
    font-size: 42px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-details > p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.email-text {
    color: var(--text-dark);
    pointer-events: none;
}

.contact-note {
    background-color: var(--background-light);
    padding: 30px;
    border-left: 3px solid var(--accent-color);
    margin-top: 50px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-visual {
    flex: 1;
    min-width: 0;
    background-color: var(--background-light);
}

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

.location-section {
    max-width: 900px;
}

.location-section h2 {
    font-size: 42px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.location-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.thanks-section {
    max-width: 900px;
    margin: 100px auto 150px auto;
    padding: 0 40px;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 56px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

.service-confirmation {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 500;
}

.thanks-next {
    margin-bottom: 60px;
    text-align: left;
}

.thanks-next h2 {
    font-size: 36px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

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

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    flex-shrink: 0;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    padding-top: 10px;
}

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

.button-primary,
.button-secondary {
    padding: 16px 40px;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.button-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.button-primary:hover {
    background-color: var(--accent-color);
}

.button-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.button-secondary:hover {
    background-color: var(--background-light);
}

.legal-page {
    max-width: 1000px;
    margin: 0 auto 150px auto;
    padding: 0 40px;
}

.legal-content {
    padding: 40px 0;
}

.legal-content h1 {
    font-size: 48px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 32px;
    font-weight: 400;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
}

.legal-content a:hover {
    color: var(--primary-color);
}

.legal-update {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .service-card,
    .philosophy-layout,
    .about-split,
    .experience-section,
    .service-detail {
        flex-direction: column;
    }

    .service-card:nth-child(even),
    .service-detail.reverse {
        flex-direction: column;
    }

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

    .step {
        flex: 1 1 calc(50% - 30px);
        min-width: 250px;
    }

    .contact-info-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .large-text {
        font-size: 22px;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .service-info h3,
    .philosophy-text h2,
    .process-section h2,
    .form-container h2,
    .page-hero h1,
    .about-column h2,
    .values-section h2,
    .experience-text h2,
    .approach-section h2,
    .service-detail-content h2,
    .contact-details h2,
    .location-section h2,
    .thanks-content h1 {
        font-size: 32px;
    }

    .process-steps {
        flex-direction: column;
    }

    .step {
        flex: 1 1 100%;
    }

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

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

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

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

    .button-primary,
    .button-secondary {
        text-align: center;
    }
}