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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

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

.ad-notice {
    background-color: #f0e8d8;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6b5d4f;
    border-bottom: 1px solid #d4c5b0;
    font-family: 'Arial', sans-serif;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 2px solid #2c2c2c;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.site-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2c2c2c;
}

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

.nav-link {
    font-size: 16px;
    color: #4a4a4a;
    font-family: 'Arial', sans-serif;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #8b4513;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #8b4513;
}

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

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

.hero-text-col {
    flex: 1;
    padding-right: 40px;
}

.hero-headline {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 400;
}

.hero-intro {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #3d3d3d;
}

.hero-image-col {
    flex: 1;
    background-color: #e8dcc8;
}

.hero-image-col img {
    width: 100%;
    height: 600px;
}

.cta-primary {
    display: inline-block;
    background-color: #8b4513;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #6e3510;
}

.intro-editorial {
    background-color: #f5f0e8;
    padding: 80px 40px;
}

.narrow-content {
    max-width: 750px;
    margin: 0 auto;
}

.intro-paragraph {
    font-size: 21px;
    line-height: 1.8;
    color: #2c2c2c;
    text-align: center;
}

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

.column-wrapper {
    display: flex;
    gap: 80px;
}

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

.col-left img,
.col-right img {
    width: 100%;
    height: 400px;
    margin-bottom: 25px;
    background-color: #e8dcc8;
}

.col-left h3,
.col-right h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.col-left p,
.col-right p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #3d3d3d;
}

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

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.section-subheading {
    font-size: 18px;
    color: #5a5a5a;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    background-color: #fafafa;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    background-color: #e8dcc8;
}

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

.service-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    color: #3d3d3d;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.select-service {
    background-color: #2c2c2c;
    color: #ffffff;
    border: 2px solid #2c2c2c;
    padding: 14px 30px;
    font-size: 15px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #ffffff;
    color: #2c2c2c;
}

.testimonial-inline {
    background-color: #8b4513;
    padding: 80px 40px;
}

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

.testimonial-content blockquote {
    border-left: none;
}

.testimonial-content p {
    font-size: 24px;
    line-height: 1.7;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 20px;
}

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

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

.form-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #3d3d3d;
}

.registration-form {
    flex: 1;
    background-color: #f5f0e8;
    padding: 50px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #d0c4b0;
    background-color: #ffffff;
    font-family: 'Georgia', serif;
}

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

.submit-btn {
    background-color: #8b4513;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 17px;
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

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

.info-asymmetric {
    background-color: #f5f0e8;
    padding: 100px 40px;
}

.info-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    align-items: center;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #1a1a1a;
}

.info-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #3d3d3d;
}

.info-visual {
    flex: 1;
    background-color: #e8dcc8;
}

.info-visual img {
    width: 100%;
    height: 500px;
}

.main-footer {
    background-color: #2c2c2c;
    color: #d4c5b0;
    padding: 80px 40px 30px;
}

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

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    font-size: 15px;
    color: #d4c5b0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: #3a3a3a;
    border-left: 4px solid #8b4513;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 30px 40px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.cookie-content a {
    color: #f0e8d8;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 30px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #8b4513;
    color: #ffffff;
}

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

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

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

.page-hero {
    background-color: #f5f0e8;
    padding: 80px 40px;
}

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

.hero-content-center h2 {
    font-size: 48px;
    font-weight: 400;
    color: #1a1a1a;
}

.hero-subtext {
    font-size: 19px;
    margin-top: 20px;
    color: #5a5a5a;
}

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

.story-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

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

.story-image {
    flex: 1;
    background-color: #e8dcc8;
}

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

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

.section-header-left {
    max-width: 1400px;
    margin: 0 auto 60px;
}

.section-header-left h2 {
    font-size: 42px;
    font-weight: 400;
    color: #1a1a1a;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 300px;
}

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

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #3d3d3d;
}

.team-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 100px;
    align-items: center;
}

.team-intro {
    flex: 1;
}

.team-intro h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #1a1a1a;
}

.team-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #3d3d3d;
}

.team-visual {
    flex: 1;
    background-color: #e8dcc8;
}

.team-visual img {
    width: 100%;
    height: 450px;
}

.approach-section {
    background-color: #f5f0e8;
    padding: 100px 40px;
}

.approach-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
}

.approach-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #3d3d3d;
}

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

.community-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
}

.community-text {
    flex: 1;
}

.community-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #1a1a1a;
}

.community-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #3d3d3d;
}

.community-image {
    flex: 1;
    background-color: #e8dcc8;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #8b4513;
    border: 2px solid #8b4513;
    padding: 14px 35px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #8b4513;
    color: #ffffff;
}

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

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

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

.service-content-left,
.service-content-right {
    flex: 1;
}

.service-image-right,
.service-image-left {
    flex: 1;
    background-color: #e8dcc8;
}

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

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

.price-display {
    font-size: 28px;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 25px;
    font-family: 'Arial', sans-serif;
}

.service-details p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #3d3d3d;
}

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

.service-features li {
    font-size: 16px;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #3d3d3d;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8b4513;
    font-size: 24px;
}

.cta-centered {
    background-color: #8b4513;
    padding: 100px 40px;
}

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

.cta-box h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-box p {
    font-size: 18px;
    color: #f0e8d8;
    margin-bottom: 35px;
}

.cta-primary-large {
    display: inline-block;
    background-color: #ffffff;
    color: #8b4513;
    padding: 18px 50px;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary-large:hover {
    background-color: #f0e8d8;
}

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

.contact-layout {
    display: flex;
    gap: 100px;
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.contact-details p {
    font-size: 17px;
    line-height: 1.7;
    color: #3d3d3d;
}

.info-block {
    margin-top: 40px;
}

.info-block h4 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

.no-click-email {
    font-family: 'Arial', sans-serif;
    color: #8b4513;
    font-weight: 600;
    pointer-events: none;
}

.note-text {
    font-size: 15px;
    font-style: italic;
    color: #6a6a6a;
    margin-top: 10px;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 400px;
    background-color: #e8dcc8;
    margin-bottom: 30px;
}

.location-info {
    background-color: #f5f0e8;
    padding: 30px;
}

.location-info h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.location-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #3d3d3d;
}

.map-placeholder {
    background-color: #d4c5b0;
    padding: 100px 40px;
    margin-top: 80px;
}

.map-info-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.map-info-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.map-info-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #2c2c2c;
}

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

.thanks-content {
    text-align: center;
    background-color: #f5f0e8;
    padding: 80px 60px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #8b4513;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #3d3d3d;
}

.confirmation-details {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.confirmation-details p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.confirmation-details strong {
    color: #8b4513;
}

.next-steps {
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

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

.steps-list li {
    font-size: 16px;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #3d3d3d;
}

.steps-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b4513;
    font-size: 18px;
    font-weight: 700;
}

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

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

.legal-content {
    background-color: #ffffff;
    padding: 60px;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #1a1a1a;
}

.last-updated {
    font-size: 14px;
    color: #6a6a6a;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2c2c2c;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #3d3d3d;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #3d3d3d;
}

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

.legal-content li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #3d3d3d;
}

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

    .hero-content-split,
    .column-wrapper,
    .form-container,
    .info-wrapper,
    .story-layout,
    .team-asymmetric,
    .community-wrapper,
    .service-full,
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text-col {
        padding-right: 0;
    }

    .hero-headline {
        font-size: 38px;
    }

    .service-full.reverse {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

    .hero-headline {
        font-size: 32px;
    }

    .section-header-center h2,
    .section-header-left h2 {
        font-size: 32px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .values-grid {
        flex-direction: column;
    }

    .registration-form {
        padding: 30px;
    }

    .legal-content {
        padding: 30px;
    }
}