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

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

.header-magazine {
    background-color: #ffffff;
    border-bottom: 3px solid #8b2e2e;
    padding: 1.5rem 0;
    position: relative;
}

.ad-disclosure {
    background-color: #f4f4f4;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.logo-area {
    flex: 1;
}

.site-title {
    font-size: 2rem;
    font-weight: 700;
    color: #8b2e2e;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tagline {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: #2a2a2a;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.25rem;
}

.main-nav a:hover {
    color: #8b2e2e;
    border-bottom: 2px solid #8b2e2e;
}

.hero-editorial {
    margin-bottom: 3rem;
}

.hero-split {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #3a3a3a;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: #ffffff;
    padding: 3rem 2rem;
}

.hero-headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    max-width: 800px;
}

.hero-subtext {
    font-size: 1.25rem;
    max-width: 700px;
    line-height: 1.6;
}

.container-magazine {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.column-layout-intro {
    display: flex;
    gap: 3rem;
}

.intro-main-col {
    flex: 2;
}

.intro-main-col h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #8b2e2e;
}

.intro-main-col p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.intro-side-col {
    flex: 1;
}

.highlight-box {
    background-color: #f9f5f0;
    padding: 2rem;
    border-left: 4px solid #8b2e2e;
}

.highlight-box h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #8b2e2e;
}

.featured-content {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature-card-large {
    flex: 2 1 600px;
    background-color: #ffffff;
    overflow: hidden;
}

.feature-card-large img {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
}

.feature-text {
    padding: 2rem;
}

.feature-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.feature-card-small {
    flex: 1 1 280px;
    background-color: #ffffff;
    overflow: hidden;
}

.feature-card-small img {
    width: 100%;
    height: 250px;
    background-color: #e0e0e0;
}

.feature-card-small h4 {
    font-size: 1.25rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2a2a2a;
}

.feature-card-small p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
}

.services-preview {
    padding: 4rem 0;
    background-color: #ffffff;
}

.section-title-centered {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #8b2e2e;
}

.services-magazine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #f9f5f0;
    padding: 2rem;
    border-top: 4px solid #8b2e2e;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.service-card h3 {
    font-size: 1.35rem;
    color: #2a2a2a;
    flex: 1;
}

.price-tag {
    font-size: 1.1rem;
    font-weight: 700;
    color: #8b2e2e;
    white-space: nowrap;
}

.service-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.select-service-btn {
    background-color: #8b2e2e;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.select-service-btn:hover {
    background-color: #6d2323;
}

.contact-form-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #8b2e2e;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.main-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-btn {
    background-color: #8b2e2e;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

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

.testimonials-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.testimonials-section h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #8b2e2e;
}

.testimonials-columns {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 400px;
    border-left: 4px solid #8b2e2e;
    padding-left: 2rem;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 0.95rem;
    font-style: normal;
    color: #666;
}

.footer-magazine {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    font-size: 0.9rem;
    color: #ccc;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 1rem;
    border-top: 1px solid #444;
    font-size: 0.85rem;
    color: #aaa;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: #555;
    color: #ffffff;
}

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

.page-header-section {
    padding: 3rem 0;
    background-color: #f9f5f0;
    border-bottom: 3px solid #8b2e2e;
}

.page-header-section h1 {
    font-size: 2.75rem;
    color: #8b2e2e;
    margin-bottom: 0.75rem;
}

.lead-text {
    font-size: 1.25rem;
    color: #666;
}

.about-story-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.two-column-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.story-text {
    flex: 1.5;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #8b2e2e;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    background-color: #e0e0e0;
}

.team-values-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.team-values-section h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #8b2e2e;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-top: 3px solid #8b2e2e;
}

.value-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.process-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.process-section h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #8b2e2e;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #8b2e2e;
    min-width: 60px;
}

.process-step h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.cta-about-section {
    padding: 4rem 0;
    background-color: #8b2e2e;
}

.cta-box-centered {
    text-align: center;
    color: #ffffff;
}

.cta-box-centered h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box-centered p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.cta-btn-large {
    display: inline-block;
    background-color: #ffffff;
    color: #8b2e2e;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.cta-btn-large:hover {
    background-color: #f0f0f0;
}

.services-detailed-section {
    padding: 4rem 0;
}

.service-detail-block {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    background-color: #ffffff;
    padding: 2.5rem;
    align-items: center;
}

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

.service-detail-content {
    flex: 1.5;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 2rem;
}

.service-detail-header h2 {
    font-size: 1.75rem;
    color: #8b2e2e;
}

.service-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: #8b2e2e;
    white-space: nowrap;
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8b2e2e;
    font-weight: 700;
}

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

.service-detail-image img {
    width: 100%;
    background-color: #e0e0e0;
}

.contact-info-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2rem;
    color: #8b2e2e;
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
}

.email-display {
    color: #2a2a2a;
}

.contact-note {
    background-color: #f9f5f0;
    padding: 1.5rem;
    border-left: 4px solid #8b2e2e;
    margin-top: 2rem;
}

.contact-image-block {
    flex: 1;
}

.contact-image-block img {
    width: 100%;
    background-color: #e0e0e0;
}

.thanks-section {
    padding: 5rem 0;
    background-color: #ffffff;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: #8b2e2e;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #666;
}

.thanks-details {
    background-color: #f9f5f0;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 500px;
}

.thanks-next-steps {
    margin: 3rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #8b2e2e;
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.btn-primary {
    background-color: #8b2e2e;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #f5f5f5;
    color: #2a2a2a;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background-color: #e5e5e5;
}

.legal-page-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.legal-page-section h1 {
    font-size: 2.5rem;
    color: #8b2e2e;
    margin-bottom: 2rem;
}

.legal-page-section h2 {
    font-size: 1.75rem;
    color: #2a2a2a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page-section h3 {
    font-size: 1.35rem;
    color: #2a2a2a;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page-section h4 {
    font-size: 1.15rem;
    color: #2a2a2a;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-page-section p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-page-section ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-page-section ul li {
    margin-bottom: 0.5rem;
}

.legal-page-section a {
    color: #8b2e2e;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: left;
}

.cookie-table th {
    background-color: #f9f5f0;
    color: #2a2a2a;
    font-weight: 600;
}

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

    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-split {
        height: 400px;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .column-layout-intro {
        flex-direction: column;
    }

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

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

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

    .testimonials-columns {
        flex-direction: column;
    }

    .footer-columns {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }

    .two-column-layout {
        flex-direction: column;
    }

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

    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
    }

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