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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fdfefe;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.header-magazine {
    background-color: #ffffff;
    border-bottom: 2px solid #34495e;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

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

.hero-editorial {
    margin-bottom: 60px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 60px 40px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
}

.container-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.column-group {
    display: flex;
    gap: 60px;
}

.main-column {
    flex: 2;
}

.main-column h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.3;
}

.main-column p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.side-column {
    flex: 1;
}

.highlight-box {
    background-color: #ecf0f1;
    padding: 30px;
    border-left: 4px solid #c0392b;
}

.highlight-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.highlight-box p {
    font-size: 15px;
    color: #555;
}

.services-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-preview h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #34495e;
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 18px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #c0392b;
}

.culture-narrative {
    padding: 100px 0;
    background-color: #ffffff;
}

.split-content {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.narrative-text {
    flex: 1.2;
}

.narrative-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.narrative-text p {
    font-size: 17px;
    margin-bottom: 22px;
    color: #555;
}

.narrative-image {
    flex: 1;
}

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

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

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

.form-wrapper-editorial h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

.form-wrapper-editorial > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #666;
}

.cultural-form {
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #ddd;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #34495e;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #c0392b;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.commitment-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.commitment-columns {
    display: flex;
    gap: 40px;
}

.commitment-item {
    flex: 1;
}

.commitment-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.commitment-item p {
    font-size: 16px;
    color: #666;
}

.footer-magazine {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #ffffff;
}

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

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    margin-bottom: 20px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 25px 40px;
    display: none;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    padding: 80px 0 60px;
    background-color: #ecf0f1;
    border-bottom: 3px solid #c0392b;
}

.page-hero-about h1,
.page-hero-services h1,
.page-hero-contact h1 {
    font-size: 52px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.lead-text {
    font-size: 20px;
    color: #555;
}

.about-story {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.story-main {
    flex: 1.5;
}

.story-main h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.story-main p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.values-inline {
    margin-top: 50px;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #c0392b;
}

.values-inline h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 16px;
    margin-bottom: 14px;
    padding-left: 24px;
    position: relative;
    color: #555;
}

.values-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #c0392b;
    font-weight: 700;
}

.story-sidebar {
    flex: 1;
}

.sidebar-image {
    margin-bottom: 30px;
    background-color: #34495e;
}

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

.quote-box {
    padding: 30px;
    background-color: #2c3e50;
    color: #ffffff;
}

.quote-box blockquote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
}

.team-approach {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-approach h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.approach-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 35px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.approach-item p {
    font-size: 16px;
    color: #666;
}

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

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

.collab-text {
    flex: 1;
}

.collab-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.collab-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.collab-image {
    flex: 1;
    background-color: #34495e;
}

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

.mission-statement {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

.mission-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mission-center h2 {
    font-size: 42px;
    margin-bottom: 28px;
}

.mission-text {
    font-size: 20px;
    line-height: 1.8;
}

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

.service-detailed {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: flex-start;
}

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

.service-visual {
    flex: 1;
    background-color: #34495e;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #555;
}

.service-details-box {
    margin-top: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 4px solid #c0392b;
}

.detail-item {
    font-size: 15px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.detail-item strong {
    font-weight: 700;
}

.services-cta {
    padding: 80px 0;
    background-color: #ecf0f1;
}

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

.cta-centered h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #c0392b;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.contact-content {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info-block > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.email-display {
    color: #555;
    font-weight: 500;
}

.contact-note {
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 3px solid #c0392b;
}

.contact-note p {
    font-size: 14px;
    color: #666;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #34495e;
}

.map-replacement {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.map-replacement img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0,0,0,0.7);
    padding: 15px 20px;
    color: #ffffff;
}

.map-overlay p {
    font-size: 16px;
    margin: 0;
}

.contact-additional {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-additional h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

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

.additional-item h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.additional-item p {
    font-size: 15px;
    color: #666;
}

.thanks-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.thanks-details {
    padding: 20px;
    background-color: #ecf0f1;
    margin-bottom: 40px;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-next {
    margin-bottom: 50px;
    text-align: left;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

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

.next-steps li {
    font-size: 16px;
    margin-bottom: 14px;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.container-legal h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-intro {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.container-legal h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.container-legal h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 14px;
    color: #34495e;
}

.container-legal p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.8;
}

.container-legal ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.container-legal ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.container-legal a {
    color: #3498db;
    text-decoration: underline;
}

.container-legal code {
    background-color: #f8f9fa;
    padding: 2px 6px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #95a5a6;
}

@media (max-width: 1024px) {
    .column-group,
    .split-content,
    .story-layout,
    .collab-split,
    .contact-layout {
        flex-direction: column;
    }

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

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

    .service-detailed {
        flex-direction: column;
    }

    .service-detailed.reverse {
        flex-direction: column;
    }

    .commitment-columns,
    .approach-grid,
    .additional-grid {
        flex-direction: column;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .main-column h2,
    .narrative-text h2,
    .story-main h2,
    .collab-text h2,
    .contact-info-block h2 {
        font-size: 28px;
    }

    .services-preview h2,
    .team-approach h2,
    .mission-center h2,
    .cta-centered h2,
    .contact-additional h2 {
        font-size: 32px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

    .container-magazine,
    .header-content {
        padding: 0 20px;
    }

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

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