/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    color: #27ae60;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e8449;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a252f;
}

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

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

h5 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1.2rem;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    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 {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #52c77c;
    text-decoration: underline;
}

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

/* Header */
.header-minimal {
    background-color: #f8f9fa;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e8ecef;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
}

.nav-inline {
    display: flex;
    gap: 2rem;
}

.nav-inline a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-inline a:hover {
    color: #27ae60;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

/* Editorial Layout */
.editorial-layout {
    background-color: #ffffff;
}

.content-flow {
    padding: 0;
}

.hero-editorial {
    padding: 4rem 0 2rem;
    background-color: #f8f9fa;
}

.hero-editorial h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #546e7a;
    margin-bottom: 2rem;
}

.inline-image {
    margin: 3rem 0;
    background-color: #ecf0f1;
}

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

/* Text Sections */
.text-section {
    padding: 3rem 0;
}

.text-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Image-Text Blend */
.image-text-blend {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.content-columns {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.column-text {
    flex: 1;
}

.column-image {
    flex: 1;
    background-color: #e0e6e9;
}

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

/* Insight Block */
.insight-block {
    padding: 4rem 0;
    background-color: #e8f5e9;
}

.insight-block h3 {
    font-size: 2rem;
    color: #1b5e20;
    margin-bottom: 1.5rem;
}

.insight-block p {
    font-size: 1.15rem;
    color: #2e7d32;
}

/* Services Editorial */
.services-editorial {
    padding: 4rem 0;
}

.section-intro {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 3rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #27ae60;
}

.service-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-meta {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
}

/* Testimonial Inline */
.testimonial-inline {
    padding: 4rem 0;
    background-color: #ecf0f1;
}

blockquote {
    border-left: 4px solid #27ae60;
    padding-left: 2rem;
    font-size: 1.2rem;
    font-style: italic;
    color: #34495e;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    color: #7f8c8d;
}

/* Forms */
.form-editorial {
    max-width: 600px;
    margin: 2rem auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1e8449;
    color: #ffffff;
}

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

/* CTA Editorial */
.cta-editorial {
    padding: 4rem 0;
    background-color: #f1f8f4;
}

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

/* Disclaimer Section */
.disclaimer-section {
    padding: 3rem 0;
    background-color: #fff3cd;
}

.disclaimer {
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.6;
}

/* References Section */
.references-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.references-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.reference-list {
    list-style-position: outside;
    margin-left: 2rem;
}

.reference-list li {
    margin-bottom: 0.8rem;
}

/* Page Header */
.page-header {
    padding: 4rem 0 2rem;
    background-color: #f8f9fa;
}

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

/* Image Full */
.image-full {
    margin: 3rem 0;
    background-color: #ecf0f1;
}

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

/* Values Section */
.values-section {
    padding: 4rem 0;
}

.value-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.value-item h4 {
    color: #27ae60;
    margin-bottom: 0.8rem;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.credential-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 4px;
}

.credential-item img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #e0e6e9;
}

.credential-text h5 {
    margin-bottom: 0.5rem;
    color: #1a252f;
}

/* Achievements Section */
.achievements-section {
    padding: 4rem 0;
}

.achievement-list {
    list-style-type: none;
    margin-left: 0;
}

.achievement-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #ecf0f1;
    font-size: 1.1rem;
}

.achievement-list li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* CTA Simple */
.cta-simple {
    padding: 4rem 0;
    text-align: center;
    background-color: #e8f5e9;
}

.cta-simple h3 {
    margin-bottom: 2rem;
}

/* Service Detailed */
.service-detailed {
    padding: 4rem 0;
}

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

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

.service-visual {
    flex: 1;
    background-color: #ecf0f1;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-info ul {
    margin-top: 1.5rem;
}

.price-tag {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    text-align: center;
    background-color: #f1f8f4;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

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

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 0;
}

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

.contact-details {
    flex: 1;
}

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

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #27ae60;
}

.contact-item p {
    margin-bottom: 0;
    color: #2c3e50;
}

.contact-note {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #e8f5e9;
    border-radius: 4px;
}

.contact-note p {
    margin: 0;
    font-size: 0.95rem;
}

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

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

/* Location Section */
.location-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

/* Thanks Section */
.thanks-section {
    padding: 5rem 0;
}

.thanks-content {
    text-align: center;
    margin-bottom: 3rem;
}

.thanks-content h1 {
    color: #27ae60;
}

.thanks-details {
    margin: 2rem 0;
}

.thanks-details p {
    font-size: 1.1rem;
}

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

.thanks-image {
    margin-top: 3rem;
    background-color: #ecf0f1;
}

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

/* Next Steps */
.next-steps {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
}

.step-content p {
    margin: 0;
    color: #546e7a;
}

/* Legal Content */
.legal-content {
    background-color: #ffffff;
}

.legal-updated {
    font-size: 0.9rem;
    color: #7f8c8d;
}

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

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

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

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    border: 1px solid #dfe6e9;
    text-align: left;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.footer-section h5 {
    color: #52c77c;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #b2bec3;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #52c77c;
}

.footer-section p {
    color: #b2bec3;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2c3e50;
    color: #95a5a6;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

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

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

    .content-columns,
    .contact-layout,
    .service-block {
        flex-direction: column;
    }

    .service-block.reverse {
        flex-direction: column;
    }

    .credential-item {
        flex-direction: column;
    }

    .credential-item img {
        width: 80px;
        height: 80px;
    }

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

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

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