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

:root {
    --primary-color: #1a4d7d;
    --secondary-color: #2c6ba3;
    --accent-color: #d4851f;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --background-light: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 2px solid var(--border-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background-color: var(--background-light);
    border-radius: 4px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hero-magazine {
    position: relative;
    height: 600px;
    margin-bottom: 4rem;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(26, 77, 125, 0.85) 0%, rgba(26, 77, 125, 0.5) 60%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 3rem;
}

.hero-main-story {
    flex: 0 0 60%;
    color: #ffffff;
}

.hero-main-story h1 {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.5;
    max-width: 600px;
}

.hero-sidebar-stories {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-item {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1.2rem;
    border-left: 4px solid var(--accent-color);
}

.category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.sidebar-item h3 {
    font-size: 1.1rem;
    margin: 0;
}

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

.intro-columns {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-text-main {
    flex: 0 0 55%;
}

.intro-visual {
    flex: 0 0 40%;
}

.intro-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.visual-caption {
    margin-top: 1rem;
    padding: 1rem;
    background-color: var(--background-light);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-medium);
}

.services-preview {
    background-color: var(--background-light);
    padding: 5rem 2rem;
    margin-bottom: 4rem;
}

.section-header-magazine {
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
}

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

.service-card-featured {
    flex: 0 0 100%;
    display: flex;
    background-color: #ffffff;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.service-card-featured img {
    flex: 0 0 50%;
    object-fit: cover;
}

.service-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.service-card-small {
    flex: 0 0 calc(33.333% - 1.4rem);
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.service-card-small h3 {
    margin-bottom: 1rem;
}

.service-card-small .service-price {
    font-size: 1.4rem;
    margin-top: auto;
    margin-bottom: 1rem;
}

.service-card-wide {
    flex: 0 0 calc(66.666% - 1rem);
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.card-split {
    display: flex;
    height: 100%;
}

.card-split > div {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.card-split img {
    flex: 1;
    object-fit: cover;
}

.service-select {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-select:hover {
    background-color: var(--secondary-color);
}

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

.methodology-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.methodology-text {
    flex: 0 0 45%;
}

.methodology-visual {
    flex: 1;
}

.methodology-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.testimonials-magazine {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 5rem 2rem;
    margin-bottom: 4rem;
}

.testimonials-magazine h2 {
    color: #ffffff;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.testimonials-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.testimonial-item {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-left: 3px solid var(--accent-color);
    font-style: italic;
}

.testimonial-item p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.testimonial-item footer {
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-section-magazine {
    background-color: var(--accent-color);
    padding: 4rem 2rem;
    margin-bottom: 4rem;
}

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

.cta-text {
    flex: 1;
    color: #ffffff;
}

.cta-text h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.1rem;
}

.cta-action {
    flex: 0 0 auto;
}

.cta-button-primary {
    background-color: #ffffff;
    color: var(--accent-color);
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-button-primary:hover {
    transform: scale(1.05);
}

.form-section-magazine {
    max-width: 900px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.form-container {
    background-color: var(--background-light);
    padding: 3rem;
    border-top: 4px solid var(--primary-color);
}

.form-container h2 {
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-submit {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: var(--secondary-color);
}

.main-footer {
    background-color: var(--text-dark);
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul a {
    color: #cccccc;
    font-size: 0.9rem;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: #cccccc;
    border-left: 3px solid var(--accent-color);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #999999;
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    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;
}

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--success-color);
    color: #ffffff;
}

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

.cookie-btn:hover {
    opacity: 0.8;
}

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

.page-header-magazine {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.page-lead {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 800px;
}

.about-split {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-text {
    flex: 0 0 55%;
}

.about-image {
    flex: 1;
}

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

.team-approach {
    margin-bottom: 4rem;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-item {
    flex: 0 0 calc(50% - 1rem);
    padding: 2rem;
    background-color: var(--background-light);
    border-left: 3px solid var(--primary-color);
}

.values-section {
    margin-bottom: 4rem;
}

.values-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.values-layout img {
    flex: 0 0 45%;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.values-content {
    flex: 1;
}

.values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.values-list li {
    padding: 1rem;
    background-color: var(--background-light);
}

.expertise-areas {
    margin-bottom: 4rem;
}

.expertise-columns {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-col {
    flex: 1;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.cta-about {
    margin-top: 4rem;
}

.cta-box {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 3rem;
    text-align: center;
}

.cta-box h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
}

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

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.8;
}

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

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

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

.service-visual-left,
.service-visual-right {
    flex: 0 0 50%;
}

.service-visual-left img,
.service-visual-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-pricing {
    margin: 1.5rem 0;
}

.service-pricing .price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.form-section-services {
    max-width: 900px;
    margin: 5rem auto 0;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info-block {
    flex: 0 0 45%;
}

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

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.contact-additional {
    text-align: center;
    padding: 3rem;
    background-color: var(--background-light);
    margin-top: 3rem;
}

.contact-additional h2 {
    margin-bottom: 1rem;
}

.contact-additional p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin: 2rem 0;
}

.service-selected {
    padding: 1.5rem;
    background-color: var(--background-light);
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.thanks-detail {
    color: var(--text-light);
    margin: 1.5rem 0;
}

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

.page-header-simple {
    margin-bottom: 2rem;
}

.legal-date {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.legal-page {
    font-family: Arial, sans-serif;
}

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

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

@media (max-width: 1200px) {
    .intro-columns,
    .methodology-layout,
    .values-layout {
        flex-direction: column;
    }

    .intro-text-main,
    .intro-visual {
        flex: 1 1 100%;
    }

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

    .service-detail-item {
        flex-direction: column;
    }

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

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

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .hero-magazine {
        height: 400px;
    }

    .hero-overlay {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-main-story {
        flex: 1;
    }

    .hero-main-story h1 {
        font-size: 2rem;
    }

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

    .service-card-featured,
    .service-card-small,
    .service-card-wide {
        flex: 1 1 100%;
    }

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

    .card-split {
        flex-direction: column;
    }

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

    .approach-item {
        flex: 1 1 100%;
    }

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

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

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

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

    .about-split {
        flex-direction: column;
    }
}