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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f8f8;
    color: #666;
    font-size: 0.75rem;
    text-align: center;
    padding: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.hero-editorial {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-content-narrow {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.hero-content-narrow h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #444;
    font-weight: 400;
}

.hero-image-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f5f5f5;
}

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

.intro-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.magazine-columns {
    display: flex;
    gap: 4rem;
}

.col-main {
    flex: 2;
}

.col-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.col-main h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

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

.info-card {
    background-color: #ffffff;
    padding: 2rem;
    border-left: 4px solid #1a1a1a;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #444;
}

.info-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.info-card.highlight {
    background-color: #1a1a1a;
    color: #ffffff;
    border-left: 4px solid #666;
}

.info-card.highlight h3 {
    color: #ffffff;
}

.info-card.highlight ul li {
    color: #e0e0e0;
}

.info-card.highlight ul li:before {
    color: #ffffff;
}

.featured-services {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #555;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card.featured {
    flex-basis: 100%;
    flex-direction: row;
    gap: 2rem;
}

.service-card:not(.featured) {
    flex-basis: calc(33.333% - 1.5rem);
}

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

.service-card.featured .service-image {
    flex: 1;
}

.service-card:not(.featured) .service-image {
    width: 100%;
}

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

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-card.featured .service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #444;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.cta-button {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.testimonials-flow {
    background-color: #f5f5f5;
    padding: 5rem 2rem;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.testimonial {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-left: 4px solid #1a1a1a;
    font-style: italic;
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
}

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

.form-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
}

.registration-form {
    background-color: #ffffff;
    padding: 3rem;
    border: 2px solid #1a1a1a;
}

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

.form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-row input,
.form-row select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-button {
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 1.25rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.trust-elements {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-column p {
    color: #ccc;
    font-size: 0.95rem;
}

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: #2a2a2a;
    font-size: 0.85rem;
    color: #bbb;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    z-index: 1000;
    border-top: 2px solid #333;
}

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

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

.cookie-accept:hover {
    opacity: 0.9;
}

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

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

.page-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    background-color: #fafafa;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: flex-start;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.service-intro {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

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

.cta-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.cta-button-large {
    background-color: #ffffff;
    color: #1a1a1a;
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cta-button-large:hover {
    opacity: 0.9;
}

.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-item p {
    color: #444;
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
    color: #1a1a1a;
}

.email-note,
.opening-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.thanks-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 3rem;
}

.thanks-details {
    background-color: #f5f5f5;
    padding: 2rem;
    margin-bottom: 3rem;
    border-left: 4px solid #1a1a1a;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.next-steps ol li {
    margin-bottom: 1rem;
    color: #444;
    line-height: 1.7;
    font-size: 1.05rem;
}

.info-box {
    background-color: #fafafa;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    margin-bottom: 3rem;
}

.info-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.info-box p {
    color: #444;
}

.thanks-cta {
    display: flex;
    gap: 1rem;
}

.cta-button-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.legal-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.legal-container h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.legal-container p {
    margin-bottom: 1.25rem;
    color: #444;
    line-height: 1.7;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li,
.legal-container ol li {
    margin-bottom: 0.75rem;
    color: #444;
    line-height: 1.7;
}

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

.legal-container a:hover {
    color: #666;
}

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

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

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.team-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.team-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    flex: 1;
}

.member-image {
    background-color: #f5f5f5;
    margin-bottom: 1.5rem;
}

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

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-member p {
    color: #444;
    line-height: 1.7;
}

.methodology-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

@media (max-width: 1024px) {
    .magazine-columns {
        flex-direction: column;
        gap: 2rem;
    }

    .service-card:not(.featured) {
        flex-basis: calc(50% - 1rem);
    }

    .testimonial-container {
        flex-direction: column;
    }

    .footer-content {
        flex-wrap: wrap;
    }

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

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

@media (max-width: 768px) {
    .hero-content-narrow h1 {
        font-size: 2rem;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .service-card.featured {
        flex-direction: column;
    }

    .service-card:not(.featured) {
        flex-basis: 100%;
    }

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

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

    .section-header-center h2 {
        font-size: 2rem;
    }
}