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

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

.main-nav {
    background-color: #1a1a1a;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-family: 'Arial', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.8rem;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.hero-article {
    max-width: 720px;
    margin: 3.5rem auto 0;
    padding: 0 20px;
}

.article-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-article {
    margin-top: 3rem;
}

.article-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.article-intro {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.full-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-break {
    margin: 4rem 0;
}

.image-caption {
    text-align: center;
    font-size: 0.95rem;
    color: #718096;
    margin-top: 0.8rem;
    font-style: italic;
}

.story-section {
    max-width: 720px;
    margin: 3rem auto;
    padding: 0 20px;
}

.story-section h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.story-section h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2d3748;
}

.story-section p {
    margin-bottom: 1.3rem;
    color: #4a5568;
}

.inline-cta {
    display: inline-block;
    color: #2563eb;
    text-decoration: underline;
    font-weight: 600;
    margin: 1rem 0;
    transition: color 0.2s;
}

.inline-cta:hover {
    color: #1e40af;
}

.services-preview {
    background-color: #f7fafc;
    padding: 4rem 0;
    margin: 4rem 0;
}

.services-preview h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a1a;
}

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

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 1.2rem;
    font-family: 'Arial', sans-serif;
}

.select-service {
    background-color: #2563eb;
    color: #fff;
    border: none;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.2s;
}

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

.testimonial-section {
    margin: 4rem 0;
    background-color: #edf2f7;
    padding: 3rem 0;
}

.testimonial {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
    font-style: italic;
    font-size: 1.25rem;
    color: #2d3748;
}

.testimonial p {
    margin-bottom: 1.2rem;
}

.testimonial cite {
    display: block;
    text-align: right;
    font-style: normal;
    font-size: 1rem;
    color: #718096;
    font-weight: 600;
}

.cta-section {
    max-width: 720px;
    margin: 4rem auto;
    padding: 3rem 20px;
    text-align: center;
    background-color: #f0f9ff;
    border-radius: 8px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.cta-button {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #1e40af;
}

.cta-primary {
    background-color: #2563eb;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.2s;
}

.cta-primary:hover {
    background-color: #1e40af;
}

.cta-secondary {
    background-color: #059669;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.2s;
}

.cta-secondary:hover {
    background-color: #047857;
}

.final-cta {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 0;
    margin: 4rem 0 0;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.final-cta p {
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.main-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 0 1.5rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.footer-column p {
    color: #cbd5e0;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.5rem 20px 0;
    border-top: 1px solid #333;
    text-align: center;
    color: #a0aec0;
    font-size: 0.9rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
}

.modal-close {
    color: #718096;
    float: right;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #1a1a1a;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #1a1a1a;
    font-family: 'Georgia', serif;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
}

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

.submit-btn {
    background-color: #2563eb;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.2s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    font-family: 'Arial', sans-serif;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: opacity 0.2s;
}

.cookie-btn.accept {
    background-color: #059669;
    color: #fff;
}

.cookie-btn.reject {
    background-color: #4a5568;
    color: #fff;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 500;
}

.sticky-cta button {
    background-color: #059669;
    color: #fff;
    border: none;
    padding: 1rem 1.8rem;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: background-color 0.2s, transform 0.2s;
}

.sticky-cta button:hover {
    background-color: #047857;
    transform: translateY(-2px);
}

.service-detail {
    max-width: 720px;
    margin: 3.5rem auto;
    padding: 0 20px;
}

.service-detail h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
}

.service-detail h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.service-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-list li {
    margin-bottom: 0.8rem;
    color: #4a5568;
    line-height: 1.6;
}

.pricing-info {
    max-width: 720px;
    margin: 3rem auto;
    padding: 2rem 20px;
    background-color: #fffbeb;
    border-left: 4px solid #f59e0b;
}

.pricing-info h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.pricing-info p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.values-section {
    max-width: 720px;
    margin: 3rem auto;
    padding: 0 20px;
}

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

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: #1a1a1a;
}

.value-item p {
    color: #4a5568;
    line-height: 1.6;
}

.contact-info-section {
    max-width: 720px;
    margin: 3rem auto;
    padding: 0 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.8;
}

.contact-item a {
    color: #2563eb;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item .note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.8rem;
    color: #718096;
}

.legal-page {
    font-family: 'Arial', sans-serif;
}

.legal-section {
    max-width: 720px;
    margin: 2.5rem auto;
    padding: 0 20px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
    color: #1a1a1a;
    font-family: 'Georgia', serif;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2d3748;
}

.legal-section h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    color: #2d3748;
}

.legal-section p {
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
}

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

.legal-section ul li {
    margin-bottom: 0.6rem;
    color: #4a5568;
    line-height: 1.6;
}

.updated {
    font-style: italic;
    color: #718096;
    font-size: 0.95rem;
}

.cookie-table {
    margin: 2rem 0;
}

.cookie-table h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.cookie-table table tr {
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table table td {
    padding: 0.8rem 0.5rem;
    color: #4a5568;
    line-height: 1.6;
}

.thanks-page {
    margin-bottom: 4rem;
}

.thanks-content {
    max-width: 720px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.2rem;
    color: #059669;
    font-weight: 600;
}

.confirmation-box {
    background-color: #f0fdf4;
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    border: 2px solid #bbf7d0;
}

.confirmation-box h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-family: 'Georgia', serif;
}

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

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

.step-number {
    background-color: #059669;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Arial', sans-serif;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cta-secondary-btn {
    display: inline-block;
    background-color: transparent;
    color: #2563eb;
    padding: 1rem 2rem;
    text-decoration: none;
    border: 2px solid #2563eb;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s;
}

.cta-secondary-btn:hover {
    background-color: #2563eb;
    color: #fff;
}

@media (min-width: 768px) {
    .nav-links {
        gap: 2.5rem;
    }

    .article-title {
        font-size: 3.2rem;
    }

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

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        max-width: 70%;
    }

    .values-grid {
        gap: 2.5rem;
    }

    .contact-details {
        gap: 3rem;
    }

    .button-group {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .nav-links {
        gap: 1.2rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .article-title {
        font-size: 2.2rem;
    }

    .story-section h2 {
        font-size: 1.6rem;
    }
}
