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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7d;
    --accent-color: #d4a574;
    --text-dark: #1e1e1e;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e4e8;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.2rem; }

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

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

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

.ad-disclosure {
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-align: center;
    padding: 0.4rem;
    font-size: 0.85rem;
    font-family: Arial, sans-serif;
    font-weight: 500;
}

.header {
    background-color: var(--bg-white);
    border-bottom: 2px solid var(--border-color);
}

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

.nav-brand h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

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

.nav-menu a {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

.main-content {
    margin: 0 auto;
}

.hero-magazine {
    position: relative;
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    background-color: var(--primary-color);
}

.hero-featured img {
    width: 100%;
    height: 600px;
    opacity: 0.75;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: var(--bg-white);
    padding: 3rem 5%;
}

.hero-overlay h2 {
    font-size: 2.8rem;
    color: var(--bg-white);
    margin-bottom: 0.8rem;
}

.hero-overlay p {
    font-size: 1.3rem;
    max-width: 700px;
}

.intro-columns {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 5%;
    gap: 3rem;
}

.col-main {
    flex: 2;
}

.col-sidebar {
    flex: 1;
}

.featured-article h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.featured-article p {
    margin-bottom: 1.3rem;
    text-align: justify;
}

.insight-block {
    background-color: var(--bg-light);
    padding: 2rem;
    margin-top: 2.5rem;
    border-left: 4px solid var(--accent-color);
}

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

.sidebar-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    overflow: hidden;
}

.sidebar-card img {
    width: 100%;
    height: 250px;
    background-color: var(--bg-light);
}

.sidebar-card h5,
.sidebar-card p {
    padding: 0 1.3rem;
}

.sidebar-card h5 {
    margin-top: 1rem;
    color: var(--primary-color);
}

.sidebar-card p {
    padding-bottom: 1.3rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.trust-section {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 5%;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h3 {
    font-size: 2rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.trust-content p {
    margin-bottom: 2rem;
}

.trust-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature-item {
    flex: 1 1 calc(33.33% - 2rem);
    display: flex;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
}

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

.services-preview h3 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 280px;
    background-color: var(--bg-light);
}

.service-card h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--secondary-color);
}

.service-card p {
    padding: 0 1.5rem 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.service-card .price {
    display: block;
    padding: 0 1.5rem 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: Arial, sans-serif;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-family: Arial, sans-serif;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.testimonials-magazine {
    background-color: var(--bg-light);
    padding: 4rem 5%;
    margin-top: 4rem;
}

.testimonials-magazine h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonial-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.testimonial {
    flex: 1 1 calc(33.33% - 2rem);
    background-color: var(--bg-white);
    padding: 2rem;
    border-left: 3px solid var(--accent-color);
    font-style: italic;
}

.testimonial p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial cite {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.form-section {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 5%;
}

.form-wrapper-magazine {
    background-color: var(--bg-light);
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.form-intro {
    margin-bottom: 2.5rem;
}

.form-intro h3 {
    color: var(--primary-color);
}

.contact-form {
    max-width: 600px;
}

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

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

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

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

.btn-submit {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.disclaimer-section {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 5%;
}

.disclaimer {
    background-color: var(--bg-light);
    padding: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    border-left: 3px solid var(--accent-color);
    line-height: 1.6;
}

.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    margin-top: 5rem;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: var(--bg-white);
    transition: color 0.3s ease;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 58, 82, 0.98);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    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 {
    flex: 1;
    font-size: 0.95rem;
}

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

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

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

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

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

.about-hero {
    position: relative;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    background-color: var(--primary-color);
}

.about-hero img {
    width: 100%;
    height: 500px;
    opacity: 0.7;
}

.about-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: var(--bg-white);
    padding: 3rem 5%;
}

.about-overlay h2 {
    font-size: 2.8rem;
    color: var(--bg-white);
}

.about-content-magazine {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 5%;
    gap: 3rem;
}

.about-main {
    flex: 2;
}

.about-main h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-main h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.about-main p {
    margin-bottom: 1.3rem;
    text-align: justify;
}

.values-block {
    background-color: var(--bg-light);
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid var(--accent-color);
}

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

.values-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
}

.values-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.about-sidebar {
    flex: 1;
}

.team-card,
.process-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    overflow: hidden;
}

.team-card img,
.process-card img {
    width: 100%;
    height: 250px;
    background-color: var(--bg-light);
}

.team-card h5,
.process-card h5 {
    padding: 1rem 1.3rem 0.5rem;
    color: var(--primary-color);
}

.team-card p,
.process-card p {
    padding: 0 1.3rem 1.3rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.services-intro {
    text-align: center;
    max-width: 900px;
    margin: 4rem auto 3rem;
    padding: 0 5%;
}

.services-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0 5%;
}

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

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.service-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

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

.service-features li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    color: var(--text-light);
}

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

.service-price-block {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.price-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: Arial, sans-serif;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 400px;
    background-color: var(--bg-light);
}

.cta-services {
    text-align: center;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 5%;
    margin-top: 4rem;
}

.cta-services h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-services p {
    margin-bottom: 2rem;
}

.contact-layout {
    display: flex;
    max-width: 1300px;
    margin: 4rem auto;
    padding: 0 5%;
    gap: 3rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info > p {
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.contact-details {
    margin-bottom: 3rem;
}

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

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

.detail-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

.contact-note p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: 500px;
    background-color: var(--bg-light);
}

.thanks-section {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 5%;
    text-align: center;
}

.thanks-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid var(--accent-color);
}

.thanks-next {
    margin-top: 3rem;
}

.thanks-next h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.legal-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 5%;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
}

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

.legal-content h4 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    margin-bottom: 0.7rem;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .intro-columns,
    .about-content-magazine,
    .contact-layout {
        flex-direction: column;
    }

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

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

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

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

    .testimonial {
        flex: 1 1 100%;
    }

    .trust-features {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-overlay h2 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

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

    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
}