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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f4f4f4;
    color: #666;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2d5f3f;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d5f3f;
}

.editorial-content {
    max-width: 100%;
    background-color: #ffffff;
}

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #e8ece8;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
    padding: 40px 50px;
    max-width: 800px;
    width: 90%;
}

.hero-text-overlay h1 {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: normal;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

.intro-text {
    font-size: 21px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.content-narrow p {
    margin-bottom: 25px;
    font-size: 18px;
}

.content-narrow h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2d5f3f;
}

.inline-image-section {
    margin: 50px 0;
    background-color: #f9f9f9;
}

.inline-image-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-caption {
    padding: 15px 20px;
    font-size: 15px;
    color: #666;
    font-style: italic;
    background-color: #f9f9f9;
}

.cta-inline {
    text-align: center;
    margin: 40px 0;
}

.btn-primary {
    display: inline-block;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e4029;
    cursor: pointer;
}

.btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #2d5f3f;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 18px;
    border: 2px solid #2d5f3f;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2d5f3f;
    color: #ffffff;
    cursor: pointer;
}

.services-preview {
    margin: 60px 0;
    padding: 50px 0;
    background-color: #f5f7f5;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 50px;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.service-card h3 {
    font-size: 24px;
    margin: 20px 25px 15px;
    color: #2d5f3f;
}

.service-card p {
    margin: 0 25px 15px;
    font-size: 17px;
    line-height: 1.6;
}

.service-card .price {
    font-size: 26px;
    font-weight: bold;
    color: #2d5f3f;
    margin: 20px 25px;
}

.btn-service {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #1e4029;
}

.form-section-editorial {
    margin: 60px 0;
    padding: 50px 40px;
    background-color: #f5f7f5;
    border-radius: 8px;
}

.form-section-editorial h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.consultation-form {
    margin-top: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.form-consent {
    margin: 25px 0;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.form-consent input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
}

.form-consent a {
    color: #2d5f3f;
    text-decoration: underline;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-text {
    margin-top: 60px;
    padding: 30px;
    background-color: #fff9e6;
    border-left: 4px solid #ffc107;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 50px 30px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 0.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 14px;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px 30px;
    z-index: 1000;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    min-width: 250px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #2d5f3f;
    color: #ffffff;
}

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

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

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

.cookie-link {
    color: #2d5f3f;
    text-decoration: underline;
    font-size: 14px;
    white-space: nowrap;
}

.page-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 44px;
    color: #2d5f3f;
    margin-bottom: 15px;
}

.page-header .subtitle {
    font-size: 20px;
    color: #666;
}

.services-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 60px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 60px;
}

.service-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 400px;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
    background-color: #e8ece8;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 28px;
    color: #2d5f3f;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: #2d5f3f;
    margin: 25px 0;
}

.btn-service-select {
    display: inline-block;
    padding: 14px 30px;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service-select:hover {
    background-color: #1e4029;
}

.service-info {
    margin: 60px 0;
    padding: 50px;
    background-color: #f5f7f5;
    border-radius: 8px;
}

.service-info h2 {
    font-size: 32px;
    color: #2d5f3f;
    text-align: center;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    padding: 25px;
    background-color: #ffffff;
    border-radius: 6px;
    border-left: 4px solid #2d5f3f;
}

.step h3 {
    font-size: 22px;
    color: #2d5f3f;
    margin-bottom: 10px;
}

.step p {
    font-size: 17px;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 60px 30px;
    background-color: #f5f7f5;
    border-radius: 8px;
}

.cta-section h2 {
    font-size: 36px;
    color: #2d5f3f;
    margin-bottom: 20px;
}

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

.btn-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-large:hover {
    background-color: #1e4029;
}

.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 60px;
}

.about-content {
    background-color: #ffffff;
}

.about-intro {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background-color: #f9f9f9;
}

.intro-text {
    flex: 1;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-image {
    flex: 0 0 400px;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    background-color: #e8ece8;
}

.about-values {
    padding: 40px;
    margin-bottom: 60px;
}

.about-values h2 {
    font-size: 32px;
    color: #2d5f3f;
    margin-bottom: 40px;
}

.value-item {
    margin-bottom: 40px;
}

.value-item h3 {
    font-size: 24px;
    color: #2d5f3f;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
}

.about-team {
    padding: 40px;
    margin-bottom: 60px;
    background-color: #f5f7f5;
}

.about-team h2 {
    font-size: 32px;
    color: #2d5f3f;
    margin-bottom: 30px;
}

.about-team img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 6px;
    object-fit: cover;
    background-color: #e8ece8;
}

.about-team p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-approach {
    padding: 40px;
    margin-bottom: 60px;
}

.about-approach h2 {
    font-size: 32px;
    color: #2d5f3f;
    margin-bottom: 40px;
}

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

.approach-item {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.approach-item h3 {
    font-size: 20px;
    color: #2d5f3f;
    margin-bottom: 15px;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
}

.about-location {
    padding: 40px;
    margin-bottom: 60px;
}

.about-location h2 {
    font-size: 32px;
    color: #2d5f3f;
    margin-bottom: 20px;
}

.about-location p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-cta {
    padding: 60px 40px;
    text-align: center;
    background-color: #f5f7f5;
    border-radius: 8px;
}

.about-cta h2 {
    font-size: 36px;
    color: #2d5f3f;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 60px;
}

.contact-content {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 22px;
    color: #2d5f3f;
    margin-bottom: 15px;
}

.info-block p {
    font-size: 17px;
    line-height: 1.8;
}

.link-text {
    color: #2d5f3f;
}

.contact-image {
    flex: 0 0 400px;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8ece8;
}

.contact-cta {
    text-align: center;
    padding: 60px 40px;
    background-color: #f5f7f5;
    border-radius: 8px;
}

.contact-cta h2 {
    font-size: 36px;
    color: #2d5f3f;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

.legal-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 60px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: #2d5f3f;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: #2d5f3f;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-content a {
    color: #2d5f3f;
}

.legal-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-style: italic;
    color: #666;
}

.thanks-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 30px;
}

.thanks-container {
    text-align: center;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 38px;
    color: #2d5f3f;
    margin-bottom: 30px;
}

.thanks-message {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-message p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.selected-service-display {
    padding: 20px;
    background-color: #f5f7f5;
    border-radius: 6px;
    border-left: 4px solid #2d5f3f;
    font-size: 17px;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.thanks-next-steps h2 {
    font-size: 26px;
    color: #2d5f3f;
    margin-bottom: 20px;
}

.thanks-next-steps ul {
    list-style-position: inside;
}

.thanks-next-steps li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-text-overlay h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .content-narrow {
        padding: 40px 20px;
    }

    .service-item {
        flex-direction: column !important;
    }

    .service-image {
        flex: 1;
        width: 100%;
    }

    .about-intro {
        flex-direction: column;
    }

    .intro-image {
        flex: 1;
        width: 100%;
    }

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

    .contact-image {
        flex: 1;
        width: 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }
}
