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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
    font-size: 18px;
}

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

a {
    color: #2ecc71;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #27ae60;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: #27ae60;
}

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cookie-reject:hover {
    background: #ffffff;
    color: #2c3e50;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2ecc71;
}

.editorial-layout {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 30px 100px;
}

.hero-article {
    margin-bottom: 60px;
}

.article-header {
    margin-bottom: 50px;
    text-align: left;
}

.article-header h1 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.article-lead {
    font-size: 24px;
    line-height: 1.5;
    color: #555;
    font-weight: 400;
}

.article-image-wide {
    margin: 50px 0;
    width: 100%;
}

.article-image-wide img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.article-image-wide figcaption {
    margin-top: 12px;
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
}

.article-content {
    font-size: 19px;
    line-height: 1.8;
}

.opening-paragraph {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #2c3e50;
}

.article-content p {
    margin-bottom: 28px;
}

.article-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 60px 0 28px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.article-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.article-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 16px;
    color: #34495e;
}

.article-content ul,
.article-content ol {
    margin: 25px 0 25px 30px;
}

.article-content li {
    margin-bottom: 12px;
}

.article-image-inline {
    margin: 40px 0;
}

.article-image-inline img {
    width: 100%;
    border-radius: 6px;
}

.inline-cta-box {
    background: #f8f9fa;
    border-left: 4px solid #2ecc71;
    padding: 35px 30px;
    margin: 50px 0;
    border-radius: 6px;
}

.inline-cta-box h3 {
    margin: 0 0 20px;
    font-size: 24px;
}

.btn-inline {
    display: inline-block;
    background: #2ecc71;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.btn-inline:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
}

blockquote.testimonial-inline {
    margin: 50px 0;
    padding: 30px 35px;
    background: #ecf0f1;
    border-left: 5px solid #34495e;
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    color: #2c3e50;
}

blockquote.testimonial-inline cite {
    display: block;
    margin-top: 18px;
    font-size: 16px;
    font-style: normal;
    color: #7f8c8d;
}

.two-column-insight {
    display: flex;
    gap: 40px;
    margin: 50px 0;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-image {
    flex: 1;
}

.insight-image img {
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0 60px;
}

.service-card {
    background: #ffffff;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2ecc71;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    margin: 0 0 15px;
    font-size: 24px;
    color: #2c3e50;
}

.service-card p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2ecc71;
    margin: 20px 0;
}

.btn-select-service {
    background: #2ecc71;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-select-service:hover {
    background: #27ae60;
    transform: translateY(-1px);
}

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

.form-section h3 {
    margin: 0 0 15px;
    font-size: 28px;
}

.form-section > p {
    margin-bottom: 30px;
    font-size: 18px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-weight: 600;
    font-size: 16px;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2ecc71;
}

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

.btn-submit {
    background: #2ecc71;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 18px;
    font-size: 18px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
    font-size: 22px;
}

.audience-section p {
    margin-bottom: 25px;
}

.final-cta-section {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    margin: 60px 0;
    text-align: center;
}

.final-cta-section h3 {
    color: #ffffff;
    font-size: 32px;
    margin: 0 0 20px;
}

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

.btn-large {
    display: inline-block;
    background: #ffffff;
    color: #2ecc71;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.closing-section {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 2px solid #ecf0f1;
    text-align: center;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
    margin-top: 80px;
}

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

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #ffffff;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #2ecc71;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 14px;
    color: #95a5a6;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.btn-sticky {
    display: block;
    background: #2ecc71;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.5);
}

.about-page .team-intro p {
    margin-bottom: 20px;
}

.mission-box {
    background: #e8f8f0;
    border-left: 5px solid #2ecc71;
    padding: 35px 30px;
    margin: 50px 0;
    border-radius: 6px;
}

.mission-box h3 {
    margin: 0 0 18px;
    color: #2c3e50;
}

.process-steps {
    margin: 40px 0;
}

.step {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #ecf0f1;
}

.step:last-child {
    border-bottom: none;
}

.step h4 {
    margin: 0 0 12px;
    font-size: 22px;
    color: #2ecc71;
}

.cta-box {
    background: #f8f9fa;
    padding: 40px 35px;
    border-radius: 8px;
    text-align: center;
    margin: 50px 0;
}

.services-page .services-detailed {
    margin: 50px 0;
}

.service-detailed {
    margin-bottom: 70px;
    padding-bottom: 70px;
    border-bottom: 2px solid #ecf0f1;
}

.service-detailed:last-child {
    border-bottom: none;
}

.service-detailed .service-image {
    margin-bottom: 30px;
}

.service-detailed .service-image img {
    border-radius: 8px;
    width: 100%;
}

.service-detailed .service-info h3 {
    font-size: 32px;
    margin: 0 0 20px;
}

.service-detailed .service-info h4 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: #2c3e50;
}

.service-pricing {
    background: #e8f8f0;
    padding: 25px;
    border-radius: 6px;
    margin: 30px 0;
}

.service-pricing strong {
    font-size: 18px;
    color: #2c3e50;
    display: block;
    margin-bottom: 10px;
}

.pricing-note {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 8px;
}

.additional-info {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 8px;
    margin: 60px 0;
    text-align: center;
}

.additional-info h2 {
    margin: 0 0 20px;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #2ecc71;
    border: 2px solid #2ecc71;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-secondary:hover {
    background: #2ecc71;
    color: #ffffff;
}

.contact-page .contact-intro {
    margin-bottom: 50px;
}

.contact-details-section {
    margin: 60px 0;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 30px;
}

.contact-info-item h3 {
    font-size: 22px;
    margin: 0 0 15px;
    color: #2c3e50;
}

.contact-info-item p {
    font-size: 18px;
    line-height: 1.7;
}

.contact-info-item .note {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 8px;
}

.contact-methods {
    margin: 60px 0;
}

.method-description {
    margin-bottom: 40px;
}

.method-description h3 {
    font-size: 24px;
    margin: 0 0 12px;
}

.faq-section {
    margin: 60px 0;
}

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #ecf0f1;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 20px;
    margin: 0 0 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 17px;
    color: #555;
}

.response-promise {
    background: #e8f8f0;
    padding: 35px 30px;
    border-radius: 6px;
    margin: 50px 0;
}

.response-promise h3 {
    margin: 0 0 18px;
}

.thanks-page .thanks-message {
    text-align: center;
}

.service-confirmation-box {
    background: #e8f8f0;
    padding: 35px 30px;
    border-radius: 8px;
    margin: 40px 0;
    display: none;
}

.service-confirmation-box h3 {
    margin: 0 0 15px;
    font-size: 24px;
}

.selected-service-name {
    font-size: 22px;
    font-weight: 700;
    color: #2ecc71;
    margin: 15px 0;
}

.process-next-steps {
    margin: 50px 0;
    text-align: left;
}

.contact-reminder {
    background: #f8f9fa;
    padding: 35px 30px;
    border-radius: 6px;
    margin: 50px 0;
}

.contact-reminder h3 {
    margin: 0 0 15px;
}

.back-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 50px 0;
}

.legal-page .article-content {
    font-size: 17px;
}

.legal-page .article-content h2 {
    font-size: 30px;
    margin: 50px 0 25px;
}

.legal-page .article-content h3 {
    font-size: 22px;
    margin: 35px 0 18px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 16px;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookies-table th {
    background: #2c3e50;
    color: #ffffff;
    font-weight: 600;
}

.cookies-table tr:nth-child(even) {
    background: #f8f9fa;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 15px;
    }

    .editorial-layout {
        padding: 40px 20px 80px;
    }

    .article-header h1 {
        font-size: 36px;
    }

    .article-lead {
        font-size: 20px;
    }

    .article-content {
        font-size: 17px;
    }

    .opening-paragraph {
        font-size: 19px;
    }

    .article-content h2 {
        font-size: 28px;
        margin: 45px 0 20px;
    }

    .article-content h3 {
        font-size: 22px;
    }

    .two-column-insight {
        flex-direction: column;
        gap: 25px;
    }

    .form-section {
        padding: 35px 25px;
    }

    .final-cta-section {
        padding: 35px 25px;
    }

    .final-cta-section h3 {
        font-size: 26px;
    }

    .footer-content {
        gap: 40px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .btn-sticky {
        padding: 14px 24px;
        font-size: 15px;
    }

    .contact-info-grid {
        gap: 30px;
    }

    .back-links {
        flex-direction: column;
        align-items: stretch;
    }

    .back-links .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .cookies-table {
        font-size: 14px;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 30px;
    }

    .article-lead {
        font-size: 18px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-content {
        padding: 0 10px;
    }

    .cookie-buttons {
        width: 100%;
    }

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