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

:root {
    --primary-color: #2c5530;
    --secondary-color: #8b6f47;
    --accent-color: #c4964a;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #faf9f7;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

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

.ad-disclosure {
    background-color: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-family: Arial, sans-serif;
}

.magazine-header {
    border-bottom: 3px solid var(--border-color);
    padding: 30px 0 20px;
    background-color: var(--bg-white);
}

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

.logo-section {
    flex: 1;
}

.site-logo {
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -1px;
    color: var(--primary-color);
    font-family: 'Garamond', 'Georgia', serif;
}

.tagline {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 5px;
    font-family: Georgia, serif;
}

.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.hero-magazine {
    background-color: var(--bg-light);
    padding: 80px 40px;
}

.hero-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.hero-image-column {
    flex: 1;
    background-color: var(--border-color);
}

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

.hero-title {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 400;
    color: var(--text-dark);
}

.hero-intro {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 35px;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #1e3a21;
}

.cta-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 14px 35px;
    text-decoration: none;
    font-size: 15px;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #6f5838;
}

.intro-narrative {
    padding: 60px 40px;
    background-color: var(--bg-white);
}

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

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

.intro-narrative h3 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.3;
}

.intro-narrative p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.multi-column-features {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.feature-grid-magazine {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
}

.feature-card.wide {
    flex: 1 1 calc(60% - 30px);
}

.feature-card.narrow {
    flex: 1 1 calc(40% - 30px);
}

.feature-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background-color: var(--border-color);
}

.feature-content {
    padding: 30px;
}

.feature-content h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 400;
}

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

.services-preview {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.section-heading {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

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

.service-block {
    display: flex;
    gap: 40px;
    align-items: center;
}

.service-block.primary-block {
    flex-direction: row;
}

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

.service-text {
    flex: 1;
}

.service-visual {
    flex: 1;
    background-color: var(--border-color);
}

.service-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.service-text h4 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 400;
}

.service-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.price-tag {
    display: inline-block;
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 600;
    font-family: Arial, sans-serif;
}

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

.service-compact {
    flex: 1;
    padding: 30px;
    background-color: var(--bg-light);
}

.service-compact h4 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 400;
}

.service-compact p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 15px;
}

.cta-inline-section {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background-color: var(--bg-light);
}

.cta-inline-section p {
    font-size: 22px;
    margin-bottom: 25px;
}

.testimonials-editorial {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.testimonials-editorial h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

.testimonial-quote {
    background-color: var(--bg-white);
    padding: 40px 50px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-quote p {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-quote cite {
    font-size: 16px;
    font-style: normal;
    color: var(--text-light);
}

.philosophy-section {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.split-layout-reverse {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row-reverse;
}

.philosophy-text {
    flex: 1;
}

.philosophy-image {
    flex: 1;
    background-color: var(--border-color);
}

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

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

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

.form-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.form-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 50px;
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    font-family: Georgia, serif;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--primary-color);
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-size: 17px;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 40px 30px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p,
.footer-column ul {
    font-size: 14px;
    line-height: 1.8;
    color: #b0b0b0;
}

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

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

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

.footer-column a:hover {
    color: var(--bg-white);
}

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

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #888;
    margin-bottom: 15px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 25px 40px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-cookie {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: Arial, sans-serif;
    transition: opacity 0.3s ease;
}

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

.btn-cookie.reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.btn-cookie:hover {
    opacity: 0.8;
}

.cookie-link {
    color: var(--bg-white);
    text-decoration: underline;
    font-size: 14px;
}

.page-hero-small {
    background-color: var(--bg-light);
    padding: 60px 40px;
    text-align: center;
}

.page-hero-small h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 400;
}

.subtitle {
    font-size: 20px;
    color: var(--text-light);
    font-style: italic;
}

.about-story {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.about-story img {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    background-color: var(--border-color);
    object-fit: cover;
}

.about-story h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
}

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

.team-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.team-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

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

.approach-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 35px;
}

.approach-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 400;
}

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

.values-section {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.values-text {
    flex: 1;
}

.values-image {
    flex: 1;
    background-color: var(--border-color);
}

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

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

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.values-list li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.philosophy-detail {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.philosophy-detail h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
}

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

.services-detailed {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

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

.service-image-large {
    flex: 1;
    background-color: var(--border-color);
}

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 400;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-details-list h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 400;
}

.service-details-list ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 25px;
}

.service-details-list li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.service-pricing {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.price-main {
    display: block;
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 600;
    font-family: Arial, sans-serif;
    margin-bottom: 5px;
}

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

.btn-service {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 35px;
    text-decoration: none;
    font-size: 16px;
    font-family: Arial, sans-serif;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

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

.service-faq {
    padding: 60px 40px;
    background-color: var(--bg-light);
}

.service-faq h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 30px;
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

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

.contact-content {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.contact-image-section {
    flex: 1;
    background-color: var(--border-color);
}

.contact-image-section img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

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

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

.contact-block h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

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

.email-text {
    color: var(--text-dark);
    font-weight: 500;
}

.note {
    font-size: 14px;
    font-style: italic;
    margin-top: 10px;
}

.how-to-reach {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.how-to-reach h3 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 400;
}

.reach-methods {
    display: flex;
    gap: 30px;
}

.reach-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 30px;
}

.reach-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 400;
}

.reach-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
}

.inline-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.inline-link:hover {
    text-decoration: none;
}

.location-info {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.location-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
}

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

.transport-info {
    display: flex;
    gap: 40px;
}

.transport-option {
    flex: 1;
}

.transport-option h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

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

.thanks-content {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.thanks-message {
    text-align: center;
    margin-bottom: 60px;
}

.thanks-message h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--primary-color);
}

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

.service-confirmation {
    background-color: var(--bg-light);
    padding: 20px;
    margin: 30px 0;
    font-size: 18px;
    color: var(--text-dark);
}

.next-steps h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 400;
}

.steps-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
    padding-left: 30px;
}

.steps-list li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 35px;
    text-decoration: none;
    font-size: 16px;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 35px;
    text-decoration: none;
    font-size: 16px;
    font-family: Arial, sans-serif;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.additional-info {
    max-width: 1000px;
    margin: 0 auto;
}

.additional-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 400;
}

.additional-info p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.info-links {
    display: flex;
    gap: 30px;
}

.info-link-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.info-link-card:hover {
    background-color: var(--border-color);
}

.info-link-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 400;
}

.info-link-card p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

.legal-content {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

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

.legal-content h3 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 500;
}

.legal-content h4 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 500;
}

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

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

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

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    text-decoration: none;
}

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

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    font-size: 15px;
}

.cookie-table td {
    font-size: 15px;
    color: var(--text-light);
}

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

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-content-split {
        flex-direction: column;
    }

    .feature-grid-magazine {
        flex-direction: column;
    }

    .feature-card.wide,
    .feature-card.narrow {
        flex: 1 1 100%;
    }

    .service-block,
    .service-detail-card {
        flex-direction: column !important;
    }

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

    .approach-grid,
    .reach-methods,
    .transport-info,
    .info-links {
        flex-direction: column;
    }

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

    .hero-title {
        font-size: 36px;
    }

    .section-heading {
        font-size: 32px;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: flex-start;
    }
}
