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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafaf8;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 1000;
}

.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;
}

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

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

.btn-accept {
    background-color: #8b6f47;
    color: #fff;
}

.btn-accept:hover {
    background-color: #6d5638;
}

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

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

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

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: #2c2c2c;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #8b6f47;
}

.ad-disclosure {
    background-color: #f5f5f5;
    padding: 6px 12px;
    border-radius: 4px;
}

.ad-label {
    font-size: 12px;
    color: #666;
}

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

.hero-columns {
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text-column {
    flex: 1;
}

.hero-text-column h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #8b6f47;
}

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

.hero-image-column {
    flex: 1;
    background-color: #e8e3db;
}

.hero-image-column img {
    width: 100%;
    height: 500px;
}

.intro-text-section {
    background-color: #f5f3ef;
    padding: 80px 40px;
    margin: 60px 0;
}

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

.intro-large {
    font-size: 24px;
    line-height: 1.7;
    color: #2c2c2c;
}

.three-column-grid {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.grid-card {
    flex: 1;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.card-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e8e3db;
}

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

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

.asymmetric-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-highlight-left {
    flex: 1.2;
}

.service-tag {
    display: inline-block;
    background-color: #8b6f47;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.service-text-block h2 {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 400;
}

.service-text-block p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.benefit-list {
    margin: 30px 0;
}

.benefit-list li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: 700;
}

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

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #8b6f47;
}

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

.btn-primary {
    display: inline-block;
    background-color: #8b6f47;
    color: #fff;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #6d5638;
}

.service-image-right {
    flex: 1;
    background-color: #e8e3db;
}

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

.magazine-split-section {
    background-color: #f5f3ef;
    padding: 100px 0;
    margin: 80px 0;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.split-image-left {
    flex: 1;
    background-color: #e8e3db;
}

.split-image-left img {
    width: 100%;
    height: 450px;
}

.split-content-right {
    flex: 1;
}

.split-content-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.2;
}

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

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

.testimonial-wrapper {
    background-color: #fff;
    border-left: 4px solid #8b6f47;
    padding: 50px 60px;
}

.testimonial-block p {
    font-size: 22px;
    line-height: 1.6;
    color: #2c2c2c;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-block cite {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

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

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

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 400;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
}

.services-magazine-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-row {
    display: flex;
    gap: 30px;
}

.service-info-box {
    flex: 1;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 40px;
    position: relative;
}

.service-info-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-info-box p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.price-inline {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #8b6f47;
}

.cta-section-inline {
    background-color: #2c2c2c;
    color: #fff;
    padding: 80px 40px;
    margin: 100px 0;
}

.cta-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-content-centered p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #ccc;
}

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

.btn-secondary:hover {
    background-color: #fff;
    color: #2c2c2c;
}

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

.form-container {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 60px;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 400;
}

.form-intro p {
    font-size: 17px;
    color: #666;
}

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

.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;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: inherit;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    margin-top: 4px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.form-checkbox a {
    color: #8b6f47;
    text-decoration: underline;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #8b6f47;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #6d5638;
}

.philosophy-section {
    background-color: #f5f3ef;
    padding: 100px 40px;
    margin: 80px 0;
}

.philosophy-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 400;
}

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

.main-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    font-size: 14px;
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #8b6f47;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px 0;
    border-top: 1px solid #444;
}

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

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

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

.contact-page-layout {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
}

.contact-info-section {
    flex: 1;
}

.contact-info-section h1 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 400;
}

.contact-info-section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.contact-map-section {
    flex: 1;
    background-color: #e8e3db;
    height: 500px;
}

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

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 30px;
    font-weight: 400;
}

.about-hero-text {
    font-size: 22px;
    line-height: 1.7;
    color: #555;
    max-width: 900px;
}

.about-story-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

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

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 400;
}

.about-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-section {
    background-color: #f5f3ef;
    padding: 100px 40px;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 400;
}

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

.value-item {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 400;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
    list-style: disc;
}

.thanks-page {
    max-width: 800px;
    margin: 120px auto;
    padding: 0 40px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #8b6f47;
}

.thanks-page p {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-page .btn-primary {
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .hero-columns,
    .asymmetric-layout,
    .split-container,
    .grid-container,
    .contact-page-layout,
    .about-story-section,
    .values-grid {
        flex-direction: column;
    }

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

    .hero-text-column h1 {
        font-size: 38px;
    }

    .service-text-block h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

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

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