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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

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

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

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

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand-logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #666;
    font-style: italic;
    padding: 5px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

.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;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

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

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

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

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

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

.hero-magazine {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.6) 100%);
}

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

.hero-main-story {
    position: relative;
    z-index: 10;
    padding: 40px 0;
}

.hero-main-story h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-main-story p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

.hero-visual {
    width: 100%;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e0e0e0;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.magazine-intro {
    padding: 80px 0;
    background-color: #ffffff;
}

.three-column-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.column-narrow {
    flex: 1;
    min-width: 200px;
}

.column-narrow h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 700;
}

.column-main {
    flex: 2;
    min-width: 300px;
}

.lead-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.column-sidebar {
    flex: 1;
    min-width: 200px;
}

.stats-box {
    background-color: #f5f5f5;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

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

.visual-break {
    width: 100%;
    overflow: hidden;
}

.visual-break img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e0e0e0;
}

.services-magazine {
    padding: 80px 0;
    background-color: #fafafa;
}

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

.service-grid-magazine {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card-large,
.service-card-medium,
.service-card-small,
.service-card-full {
    background-color: #ffffff;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.service-card-large {
    display: flex;
    flex-direction: column;
}

.service-card-full {
    display: flex;
    flex-direction: column;
}

.service-flex {
    display: flex;
    flex-wrap: wrap;
}

.service-flex .service-image-container {
    flex: 1;
    min-width: 300px;
}

.service-flex .service-content {
    flex: 1;
    min-width: 300px;
}

.service-card-medium {
    display: flex;
    flex-direction: column;
}

.service-card-small {
    background-color: #f5f5f5;
    padding: 30px;
}

.service-image-container {
    width: 100%;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-content p {
    margin-bottom: 20px;
    color: #333;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.btn-select-service {
    padding: 12px 25px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-wrapper {
    background-color: #f9f9f9;
    padding: 50px;
    border: 1px solid #e0e0e0;
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-intro {
    margin-bottom: 30px;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    font-family: inherit;
}

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

.btn-submit {
    padding: 15px 35px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.insights-magazine {
    padding: 80px 0;
    background-color: #fafafa;
}

.insights-magazine h2 {
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 700;
}

.two-column-asymmetric {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.column-text {
    flex: 1.5;
    min-width: 300px;
}

.column-text p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.column-visual {
    flex: 1;
    min-width: 300px;
}

.column-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e0e0e0;
}

.trust-indicators {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #ffffff;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #ffffff;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 14px;
    font-style: normal;
    color: #ccc;
}

.cta-magazine {
    padding: 80px 0;
    background-color: #f5f5f5;
}

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

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

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

.btn-cta-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.footer-main {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

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

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

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

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

.footer-disclaimer {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
    border-left: 3px solid #666;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

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

.page-hero-slim {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
}

.page-hero-slim h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.about-story {
    padding: 80px 0;
}

.story-block {
    margin-bottom: 60px;
}

.story-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.story-block p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.methodology-visual,
.process-visual {
    width: 100%;
    margin: 60px 0;
    overflow: hidden;
}

.methodology-visual img,
.process-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e0e0e0;
}

.values-section {
    margin: 60px 0;
}

.values-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background-color: #f9f9f9;
    border-left: 3px solid #1a1a1a;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

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

.team-approach {
    margin: 60px 0;
}

.team-approach h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-approach p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-simple {
    padding: 60px 0;
    background-color: #fafafa;
    text-align: center;
}

.cta-simple h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail-item {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.service-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #1a1a1a;
}

.service-pricing-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 25px;
    background-color: #f5f5f5;
    margin-top: 30px;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-detail-visual {
    flex: 1;
    min-width: 300px;
}

.service-detail-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e0e0e0;
}

.contact-info-section {
    padding: 80px 0;
}

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

.contact-details {
    flex: 1;
    min-width: 300px;
}

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

.contact-block h2 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.contact-note {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e0e0e0;
}

.location-info {
    padding: 60px 0;
    background-color: #fafafa;
}

.location-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.location-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 30px;
    color: #333;
}

.thanks-details {
    margin: 30px 0;
    padding: 20px;
    background-color: #f5f5f5;
    display: inline-block;
}

.service-selected {
    font-size: 17px;
    margin: 0;
}

.thanks-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.legal-page {
    padding: 80px 0;
}

.legal-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

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

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page ul,
.legal-page ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-page a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #333;
}

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

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

    .hero-main-story h2 {
        font-size: 32px;
    }

    .hero-main-story p {
        font-size: 17px;
    }

    .section-title-center {
        font-size: 32px;
    }

    .three-column-layout,
    .two-column-asymmetric,
    .service-detail-item,
    .contact-layout {
        flex-direction: column;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .thanks-actions a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}