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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7e;
    --accent-color: #c8955e;
    --text-dark: #1f1f1f;
    --text-light: #4a4a4a;
    --text-muted: #737373;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --font-primary: 'Georgia', 'Times New Roman', serif;
    --font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica', 'Arial', sans-serif;
}

body {
    font-family: var(--font-secondary);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.2rem;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.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;
}

.nav-magazine {
    background: var(--bg-white);
    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 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
}

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-cta {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.hero-magazine {
    background: var(--bg-light);
    padding: 4rem 0 5rem;
}

.hero-content-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hero-text-column {
    flex: 1 1 55%;
}

.hero-image-column {
    flex: 1 1 45%;
}

.hero-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hero-magazine h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-link {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.cta-link:hover {
    transform: translateX(5px);
}

.hero-image-column img {
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.editorial-intro {
    padding: 4rem 0;
    background: var(--bg-white);
}

.editorial-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-light);
}

.stats-grid {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 0;
}

.stats-layout {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.stat-card {
    flex: 1;
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.content-columns {
    padding: 5rem 0;
    background: var(--bg-white);
}

.two-col-layout {
    display: flex;
    gap: 4rem;
}

.col-main {
    flex: 1 1 65%;
}

.col-sidebar {
    flex: 1 1 35%;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.content-block img {
    margin: 2rem 0;
    border-radius: 4px;
}

.testimonial-inline {
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--bg-light);
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.sidebar-module {
    background: var(--bg-light);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 6px;
}

.cta-sidebar {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.cta-sidebar h4 {
    color: var(--bg-white);
}

.sidebar-module h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.btn-sidebar {
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
    transition: opacity 0.3s ease;
}

.btn-sidebar:hover {
    opacity: 0.9;
}

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

.data-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
}

.visual-break {
    margin: 4rem 0;
}

.image-overlay-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--bg-white);
    max-width: 700px;
    padding: 2rem;
    background: rgba(26, 58, 82, 0.85);
    border-radius: 6px;
}

.overlay-text h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.overlay-text p {
    font-size: 1.2rem;
}

.services-preview {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-header-centered {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.service-card-mag {
    flex: 1 1 calc(50% - 1rem);
    background: var(--bg-white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-mag:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card-mag.featured {
    border: 2px solid var(--accent-color);
}

.badge-popular {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

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

.cta-embedded {
    padding: 4rem 0;
    background: var(--bg-white);
}

.cta-box-inline {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 6px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.cta-box-inline h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.btn-cta-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

.btn-cta-large:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.insights-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.insights-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.insight-item {
    flex: 1;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.insight-item h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.testimonials-editorial {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonials-editorial h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-box {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.contact-form-magazine {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 6px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-secondary);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.final-cta {
    padding: 5rem 0;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.final-cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

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

.btn-cta-white {
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-cta-white:hover {
    background: var(--accent-color);
    color: var(--bg-white);
}

.footer-magazine {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--accent-color);
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-accept {
    background: var(--success-color);
    color: var(--bg-white);
}

.btn-reject {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-header {
    background: var(--bg-light);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.legal-date {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.content-section {
    padding: 3rem 0;
}

.image-content-block {
    margin: 3rem 0;
}

.image-content-block img {
    border-radius: 6px;
}

.styled-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.styled-list li {
    margin-bottom: 1rem;
}

.stats-inline {
    display: flex;
    justify-content: space-around;
    padding: 2rem 0;
    margin: 3rem 0;
    background: var(--bg-light);
    border-radius: 6px;
}

.stat-inline-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-inline-item .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

.stat-inline-item .label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.services-detail-section {
    padding: 3rem 0;
}

.service-detail-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
}

.service-detail-card.featured-service {
    border: 2px solid var(--accent-color);
}

.service-detail-header {
    background: var(--bg-light);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-detail-header h2 {
    margin: 0;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-content {
    padding: 2rem;
}

.service-description h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.detailed-list {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.detailed-list li {
    margin-bottom: 0.7rem;
}

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

.btn-service {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.services-comparison {
    padding: 4rem 0;
    background: var(--bg-light);
}

.services-comparison h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
}

.cta-services {
    padding: 4rem 0;
    background: var(--bg-white);
    text-align: center;
}

.contact-section {
    padding: 3rem 0;
}

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

.contact-info {
    flex: 1 1 50%;
}

.contact-map {
    flex: 1 1 50%;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-block .note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.map-placeholder {
    position: relative;
    height: 500px;
    border-radius: 6px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 82, 0.9);
    color: var(--bg-white);
    padding: 1.5rem;
}

.contact-cta {
    padding: 4rem 0;
    background: var(--bg-light);
    text-align: center;
}

.thanks-section {
    padding: 5rem 0;
}

.thanks-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 6px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-box h1 {
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.service-selected {
    background: var(--bg-white);
    padding: 1rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.service-selected-text {
    margin: 0;
    font-weight: 600;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.steps-list {
    padding-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 1.5rem;
}

.steps-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.thanks-info {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-info h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.info-list {
    list-style: disc;
    padding-left: 1.5rem;
}

.info-list li {
    margin-bottom: 0.7rem;
}

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

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 0.9rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

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

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

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

.legal-list {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.legal-list li {
    margin-bottom: 0.7rem;
}

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

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-content-split {
        flex-direction: column;
    }

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

    .two-col-layout {
        flex-direction: column;
    }

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

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

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

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

    .footer-col {
        flex: 1 1 45%;
    }

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

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

    h2 {
        font-size: 1.8rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .nav-cta {
        display: none;
    }

    .hero-magazine h1 {
        font-size: 2.2rem;
    }

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

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

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

    .comparison-table {
        font-size: 0.9rem;
    }
}