* {
    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;
}

.magazine-header {
    background-color: #ffffff;
    border-bottom: 2px solid #1a1a1a;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    border-bottom: 1px solid #e0e0e0;
    background-color: #f8f8f8;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a1a1a;
    font-family: 'Georgia', serif;
}

.magazine-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.2rem 5%;
    background-color: #ffffff;
}

.magazine-nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.magazine-nav a:hover {
    color: #c41e3a;
}

.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-editorial {
    position: relative;
    width: 100%;
    margin-bottom: 4rem;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
    padding: 4rem 5%;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 900px;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-style: italic;
    color: #e0e0e0;
    max-width: 700px;
}

.intro-columns {
    display: flex;
    gap: 4rem;
    padding: 4rem 5%;
    margin-bottom: 3rem;
}

.column-left {
    flex: 1.2;
}

.column-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
}

.column-left p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.column-right {
    flex: 1;
}

.image-feature {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
}

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

.insight-block {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 5%;
    margin-bottom: 3rem;
}

.insight-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.insight-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 900px;
    line-height: 1.8;
}

.stats-row {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #c41e3a;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #d0d0d0;
    max-width: 200px;
    line-height: 1.4;
}

.services-preview {
    padding: 4rem 5%;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 400;
    text-align: center;
}

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

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 300px;
    background-color: #f0f0f0;
}

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

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

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

.service-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #c41e3a;
    margin: 1rem 0;
}

.service-select {
    padding: 0.8rem 1.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.narrative-section {
    display: flex;
    gap: 3rem;
    padding: 4rem 5%;
    margin-bottom: 3rem;
    background-color: #f8f8f8;
}

.narrative-content {
    flex: 1.5;
}

.narrative-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.narrative-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.cta-inline {
    margin-top: 2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

.narrative-aside {
    flex: 1;
    background-color: #e0e0e0;
}

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

.form-section {
    padding: 4rem 5%;
    background-color: #ffffff;
    margin-bottom: 3rem;
}

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

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: #666;
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    background-color: #ffffff;
}

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

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: #c41e3a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: center;
}

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

.trust-elements {
    padding: 4rem 5%;
    background-color: #f8f8f8;
    margin-bottom: 3rem;
}

.trust-elements h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.trust-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.magazine-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 5% 1.5rem;
}

.footer-columns {
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #3a3a3a;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 5%;
    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: 2rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    font-size: 0.85rem;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #c41e3a;
    color: #ffffff;
}

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

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

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

.page-hero {
    padding: 4rem 5% 3rem;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 3rem;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-lead {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

.about-story {
    padding: 0 5% 3rem;
    margin-bottom: 3rem;
}

.story-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.story-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.story-image {
    flex: 1;
    background-color: #f0f0f0;
}

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

.mission-block {
    padding: 4rem 5%;
    background-color: #f8f8f8;
    margin-bottom: 3rem;
}

.mission-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-align: center;
}

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

.mission-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.approach-section {
    padding: 4rem 5%;
    margin-bottom: 3rem;
}

.approach-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 400;
    text-align: center;
}

.approach-columns {
    display: flex;
    gap: 3rem;
}

.approach-item {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 3px solid #c41e3a;
}

.approach-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.approach-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.team-preview {
    padding: 4rem 5%;
    background-color: #f8f8f8;
    margin-bottom: 3rem;
}

.team-preview h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-align: center;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
}

.team-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
}

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-value {
    font-size: 4rem;
    font-weight: bold;
    color: #c41e3a;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    color: #666;
    max-width: 200px;
}

.values-section {
    padding: 4rem 5%;
    margin-bottom: 3rem;
}

.values-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 400;
    text-align: center;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #c41e3a;
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-section {
    padding: 4rem 5%;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.cta-content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.services-detailed {
    padding: 0 5%;
    margin-bottom: 3rem;
}

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

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

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

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

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

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

.service-detail-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-meta {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    font-size: 0.85rem;
    color: #666;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #c41e3a;
    margin: 1.5rem 0;
}

.contact-info-section {
    padding: 0 5% 3rem;
    margin-bottom: 3rem;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1.2;
}

.contact-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    font-weight: 400;
    color: #c41e3a;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-left: 3px solid #c41e3a;
}

.contact-note p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-image {
    flex: 1;
    background-color: #f0f0f0;
}

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

.location-section {
    padding: 4rem 5%;
    background-color: #f8f8f8;
    margin-bottom: 3rem;
}

.location-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.location-content {
    max-width: 800px;
}

.location-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.inquiry-types {
    padding: 4rem 5%;
    margin-bottom: 3rem;
}

.inquiry-types h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-align: center;
}

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

.inquiry-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.inquiry-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.inquiry-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.thanks-section {
    padding: 6rem 5%;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.thanks-message {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-details {
    padding: 1.5rem;
    background-color: #f8f8f8;
    margin-bottom: 3rem;
    border-left: 3px solid #c41e3a;
}

.thanks-details p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.thanks-next {
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-next h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.thanks-steps {
    list-style-position: inside;
    font-size: 1rem;
    line-height: 2;
}

.thanks-steps li {
    margin-bottom: 0.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.legal-page {
    padding: 0 5% 3rem;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    font-weight: 400;
}

.legal-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.legal-content ul li {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #c41e3a;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #a01629;
}

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

.cookie-table thead {
    background-color: #f8f8f8;
}

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

.cookie-table th {
    font-weight: 600;
}

@media (max-width: 1024px) {
    .intro-columns,
    .narrative-section,
    .story-grid,
    .contact-grid {
        flex-direction: column;
    }

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

    .stats-row,
    .trust-grid,
    .approach-columns,
    .team-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

    .hero-overlay h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .magazine-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

    .footer-columns {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

    .value-item,
    .inquiry-item {
        flex: 1 1 100%;
    }
}