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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafafa;
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #0d0d0d;
}

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

h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
}

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

p {
    margin-bottom: 1.2rem;
}

a {
    color: #1a5a8a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3d5e;
}

ul {
    list-style-position: inside;
    margin-bottom: 1.2rem;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 3px solid #1a5a8a;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

.btn-reject {
    background-color: #f0f0f0;
    color: #333333;
}

.btn-reject:hover {
    background-color: #e0e0e0;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 500;
}

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

.nav-brand a {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0d0d0d;
}

.nav-ad-disclosure {
    background-color: #fff4e6;
    padding: 0.4rem 1rem;
    border-left: 3px solid #ff9933;
    font-size: 0.85rem;
    color: #8b4513;
}

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

.nav-menu a {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
}

.nav-menu a:hover {
    color: #1a5a8a;
}

.hero-editorial {
    position: relative;
    margin-bottom: 3rem;
}

.hero-image-container {
    position: relative;
    height: 600px;
    background-color: #2c3e50;
}

.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.85) 0%, rgba(0,0,0,0.3) 100%);
    padding: 3rem;
    color: #ffffff;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 3.5rem;
    max-width: 900px;
    margin-bottom: 1rem;
}

.hero-overlay p {
    font-size: 1.4rem;
    max-width: 700px;
    margin-bottom: 0;
}

.intro-section,
.methodology-section,
.services-preview,
.testimonials-section,
.cta-section,
.form-section,
.disclaimer-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.magazine-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.main-column {
    flex: 2;
}

.side-column {
    flex: 1;
    position: sticky;
    top: 120px;
}

.highlight-box {
    background-color: #f8f8f8;
    border-left: 4px solid #1a5a8a;
    padding: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 0;
}

.feature-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.feature-list li:last-child {
    border-bottom: none;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666666;
}

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

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8e8e8;
}

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

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

.service-content p {
    flex: 1;
    margin-bottom: 1.5rem;
}

.price {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5a8a;
    display: block;
    margin-bottom: 1.5rem;
}

.btn-service,
.btn-primary,
.btn-secondary,
.btn-submit {
    padding: 1rem 2rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    text-align: center;
}

.btn-service,
.btn-primary,
.btn-submit {
    background-color: #1a5a8a;
    color: #ffffff;
}

.btn-service:hover,
.btn-primary:hover,
.btn-submit:hover {
    background-color: #0d3d5e;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #333333;
}

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

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

.content-block {
    flex: 1.5;
}

.image-block {
    flex: 1;
}

.image-block img {
    width: 100%;
    border: 1px solid #e0e0e0;
    background-color: #e8e8e8;
}

.testimonials-section {
    background-color: #f4f4f4;
    padding: 4rem 2rem;
}

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

.testimonial {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-left: 3px solid #1a5a8a;
    font-style: italic;
}

.testimonial p {
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial footer {
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #666666;
    font-size: 0.95rem;
}

.cta-section {
    background-color: #1a5a8a;
    color: #ffffff;
    text-align: center;
    padding: 4rem 2rem;
}

.cta-container h2 {
    color: #ffffff;
    font-size: 2.5rem;
}

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

.form-section {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    padding: 3rem;
}

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

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

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

.form-group label {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333333;
}

.form-group input,
.form-group select {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #cccccc;
    font-family: 'Helvetica Neue', sans-serif;
}

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

.disclaimer-section {
    background-color: #fff9e6;
    border: 1px solid #ffd700;
    padding: 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5a4a2a;
}

.footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

.footer-column {
    flex: 1 1 200px;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column p,
.footer-column ul {
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.footer-column a {
    color: #d0d0d0;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444444;
    font-size: 0.9rem;
}

.page-hero {
    background-color: #1a5a8a;
    color: #ffffff;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
}

.page-hero h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    margin-bottom: 0;
}

.about-content,
.contact-content,
.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-story,
.about-approach,
.team-section,
.commitment-section {
    max-width: 800px;
}

.about-image-block,
.about-image-secondary {
    width: 100%;
    margin: 2rem 0;
}

.about-image-block img,
.about-image-secondary img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background-color: #e8e8e8;
}

.values-section {
    margin: 3rem 0;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-left: 3px solid #1a5a8a;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.cta-about {
    background-color: #f4f4f4;
    padding: 3rem 2rem;
    margin-top: 4rem;
    text-align: center;
}

.service-full {
    margin-bottom: 4rem;
}

.service-header {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-text {
    flex: 1.5;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    background-color: #e8e8e8;
}

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

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

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5a8a;
    font-weight: 700;
}

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

.price-amount {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a5a8a;
}

.price-period {
    font-size: 1.2rem;
    color: #666666;
    margin-left: 0.5rem;
}

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

.contact-info {
    flex: 1.5;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    background-color: #e8e8e8;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-notes,
.location-section {
    margin-top: 3rem;
    max-width: 800px;
}

.thanks-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.thanks-container {
    flex: 1.5;
}

.thanks-container h1 {
    color: #1a5a8a;
    margin-bottom: 1.5rem;
}

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

.thanks-image {
    flex: 1;
}

.thanks-image img {
    width: 100%;
    background-color: #e8e8e8;
}

.next-steps {
    background-color: #f4f4f4;
    padding: 4rem 2rem;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.step-item {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 220px;
    background-color: #ffffff;
    padding: 2rem;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #1a5a8a;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.step-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

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

.legal-container {
    background-color: #ffffff;
    padding: 3rem;
    border: 1px solid #e0e0e0;
}

.legal-updated {
    font-style: italic;
    color: #666666;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
}

.legal-container ul {
    margin-left: 1.5rem;
    list-style-position: outside;
}

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

@media (max-width: 1024px) {
    .magazine-layout,
    .magazine-layout-reverse {
        flex-direction: column;
    }

    .side-column {
        position: static;
    }

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

    .contact-wrapper,
    .thanks-section {
        flex-direction: column;
    }

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

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

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

    h2 {
        font-size: 1.7rem;
    }

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

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

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

    .testimonials-grid,
    .values-grid,
    .steps-grid {
        flex-direction: column;
    }

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