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

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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #ddd;
    font-family: Arial, sans-serif;
}

.magazine-header {
    background-color: #ffffff;
    border-bottom: 2px solid #2c2c2c;
    padding: 30px 0;
}

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

.logo-section {
    display: flex;
    flex-direction: column;
}

.brand {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin-bottom: 5px;
}

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

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

.main-nav a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.main-nav a:hover {
    color: #1a1a1a;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2c2c2c;
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

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

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

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

.hero-headline {
    font-size: 3.2rem;
    line-height: 1.1;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.hero-intro {
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 35px;
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    margin-top: 5px;
}

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

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

.editorial-intro {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.narrow-column {
    max-width: 700px;
    margin: 0 auto;
}

.dropcap-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #3a3a3a;
}

.dropcap-text::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    float: left;
    line-height: 0.9;
    margin-right: 10px;
    color: #2c2c2c;
}

.services-grid-magazine {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

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

.section-header-centered h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.three-column-services {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.service-image-wrapper {
    background-color: #e8e8e8;
}

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

.service-content {
    padding: 30px;
}

.service-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 20px 0;
}

.select-service-btn {
    padding: 12px 30px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: Georgia, serif;
}

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

.select-service-btn.selected {
    background-color: #1a1a1a;
}

.two-column-services {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-wide {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.service-content-inline {
    display: flex;
    gap: 40px;
}

.service-content-inline.reverse {
    flex-direction: row-reverse;
}

.inline-text {
    flex: 1;
    padding: 40px;
}

.inline-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.trust-section {
    background-color: #f5f5f5;
    padding: 80px 0;
    margin: 100px 0;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.trust-text-block {
    flex: 1;
}

.trust-text-block h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.trust-text-block p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.testimonials-column {
    flex: 1;
}

.testimonial {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 4px solid #2c2c2c;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial p {
    font-size: 1.05rem;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 15px;
}

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

.form-section-magazine {
    background-color: #ffffff;
    padding: 80px 0;
    margin: 100px 0;
    border-top: 2px solid #2c2c2c;
    border-bottom: 2px solid #2c2c2c;
}

.form-container-centered {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.form-intro {
    font-size: 1.05rem;
    color: #666;
}

.contact-form-magazine {
    background-color: #fafafa;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.selected-service-display {
    background-color: #f0f0f0;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #2c2c2c;
}

.selected-service-display p {
    font-size: 1rem;
    color: #2c2c2c;
    margin: 5px 0;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-field {
    flex: 1;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #2c2c2c;
    font-weight: 500;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    font-family: Georgia, serif;
    background-color: #ffffff;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #2c2c2c;
}

.form-actions {
    margin-top: 30px;
}

.submit-btn {
    padding: 15px 40px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    font-family: Georgia, serif;
    transition: background-color 0.3s;
}

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

.final-cta-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.cta-wrapper h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.cta-wrapper p {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.cta-scroll-link {
    display: inline-block;
    padding: 15px 40px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.cta-scroll-link:hover {
    background-color: #1a1a1a;
}

.magazine-footer {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 60px 0 30px;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-col p {
    color: #c0c0c0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-col ul a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

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

.footer-bottom .disclaimer {
    font-size: 0.85rem;
    color: #a0a0a0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #a0a0a0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px;
    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: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s;
    font-family: Georgia, serif;
}

.cookie-btn.accept {
    background-color: #4a4a4a;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #5a5a5a;
}

.cookie-btn.reject {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

.page-hero-small {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.page-hero-small h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
}

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

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

.story-image-large {
    flex: 1.2;
    background-color: #e8e8e8;
}

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

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.story-text p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.mission-section {
    background-color: #f5f5f5;
    padding: 80px 0;
    margin: 80px 0;
}

.mission-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.mission-text-wide h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.mission-text-wide p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.values-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.section-title-centered {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
}

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

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

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

.value-item p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

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

.approach-container h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.approach-container p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.approach-list li {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.approach-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-weight: 700;
}

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

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-block:last-child {
    border-bottom: none;
}

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

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

.service-detail-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 20px 0;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 25px 0 15px;
}

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

.service-features li {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-weight: 700;
}

.service-cta-btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    transition: background-color 0.3s;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.services-cta-section {
    background-color: #f5f5f5;
    padding: 80px 0;
    margin: 100px 0;
}

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

.cta-container-centered h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.cta-container-centered p {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.cta-primary-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

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

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

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

.contact-info-block h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

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

.contact-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.email-display {
    background-color: #f5f5f5;
    padding: 15px;
    border-left: 4px solid #2c2c2c;
    font-family: monospace;
    color: #2c2c2c;
    font-size: 1rem;
}

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

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-container h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 40px;
    line-height: 1.7;
}

.confirmation-box {
    background-color: #f5f5f5;
    padding: 40px;
    border-left: 4px solid #2c2c2c;
    margin: 40px 0;
    text-align: left;
}

.confirmation-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.confirmation-box p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin: 10px 0;
}

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

.back-home-btn,
.view-services-btn {
    padding: 14px 35px;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.back-home-btn {
    background-color: #2c2c2c;
    color: #ffffff;
}

.back-home-btn:hover {
    background-color: #1a1a1a;
}

.view-services-btn {
    background-color: #ffffff;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
}

.view-services-btn:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 40px 0 20px;
}

.legal-container h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3a3a3a;
    margin: 30px 0 15px;
}

.legal-container p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.legal-container ul {
    margin: 20px 0 20px 40px;
}

.legal-container li {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 12px;
}

@media (max-width: 992px) {
    .hero-split,
    .story-layout,
    .trust-container,
    .service-content-inline,
    .service-detail-block {
        flex-direction: column;
    }

    .service-content-inline.reverse {
        flex-direction: column;
    }

    .three-column-services,
    .values-grid {
        flex-direction: column;
    }

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

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

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

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

    .main-nav {
        gap: 20px;
    }

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

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

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