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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.96);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

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

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

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

.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;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

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

.story-content {
    font-size: 18px;
    line-height: 1.8;
}

.story-header {
    margin-bottom: 60px;
}

.story-header h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.lead {
    font-size: 22px;
    color: #555555;
    line-height: 1.6;
}

.story-section {
    margin-bottom: 48px;
}

.story-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.story-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 28px;
    color: #2c3e50;
    font-weight: 600;
}

.story-section h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.story-section p {
    margin-bottom: 20px;
}

.story-image {
    margin: 48px 0;
    background-color: #f5f5f5;
}

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

.story-image-offset {
    margin-left: -60px;
    margin-right: -60px;
}

.inline-cta {
    margin: 32px 0;
}

.text-link {
    color: #3498db;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid #3498db;
    transition: all 0.3s ease;
    display: inline-block;
}

.text-link:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.story-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px 0;
}

.story-card {
    background-color: #f9f9f9;
    overflow: hidden;
}

.story-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background-color: #e8e8e8;
}

.story-card h3 {
    font-size: 24px;
    margin: 20px 24px 12px;
    color: #1a1a1a;
}

.story-card p {
    margin: 0 24px 24px;
    font-size: 16px;
    color: #555555;
}

.story-quote {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    color: #555555;
    padding: 32px 0;
    margin: 40px 0;
    border-left: 4px solid #3498db;
    padding-left: 32px;
}

.services-preview {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
}

.service-item {
    padding: 28px;
    background-color: #f9f9f9;
    border-left: 4px solid #3498db;
}

.service-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-item p {
    margin-bottom: 16px;
    font-size: 16px;
}

.price {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 16px;
}

.service-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #2980b9;
}

.cta-section {
    background-color: #f9f9f9;
    padding: 48px 40px;
    margin: 60px -40px 40px;
}

.story-form {
    margin-top: 32px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    font-size: 16px;
    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: #3498db;
}

.btn-submit,
.btn-primary {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-submit:hover,
.btn-primary:hover {
    background-color: #2980b9;
}

.disclaimer-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e8e8e8;
}

.disclaimer {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    font-style: italic;
}

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

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.services-full {
    margin-top: 60px;
}

.service-full {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 80px;
}

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

.service-image {
    background-color: #f5f5f5;
}

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

.service-details {
    padding: 20px 0;
}

.service-details h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-details h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-details p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    margin: 20px 0;
}

.service-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

.service-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 600;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 32px 0;
    padding: 24px;
    background-color: #f9f9f9;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.btn-service {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #2980b9;
}

.contact-info-section {
    margin: 48px 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-card {
    background-color: #f9f9f9;
    padding: 32px;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.email-text {
    color: #2c3e50;
    font-weight: 500;
}

.contact-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 12px;
}

.info-list {
    list-style: none;
    margin: 24px 0;
}

.info-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

.info-list li:before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #3498db;
    font-weight: 700;
}

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

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

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

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    color: #555555;
}

.thanks-content {
    text-align: center;
}

.thanks-message {
    background-color: #f9f9f9;
    padding: 40px;
    margin: 40px 0;
    border-left: 4px solid #27ae60;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px 0;
    text-align: left;
}

.step-item {
    background-color: #f9f9f9;
    padding: 28px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3498db;
}

.step-item p {
    font-size: 16px;
    margin-bottom: 0;
}

.suggestion-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.suggestion-card {
    background-color: #f9f9f9;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease;
    display: block;
}

.suggestion-card:hover {
    background-color: #e8e8e8;
}

.suggestion-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #3498db;
}

.suggestion-card p {
    font-size: 16px;
    margin-bottom: 0;
    color: #555555;
}

.thanks-note {
    background-color: #fff9e6;
    padding: 24px;
    border-left: 4px solid #f39c12;
    margin-top: 40px;
}

.thanks-note p {
    font-size: 14px;
    margin-bottom: 0;
}

.legal-content {
    font-size: 16px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 28px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-section a {
    color: #3498db;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px 0;
}

.value-item {
    background-color: #f9f9f9;
    padding: 28px;
    border-left: 4px solid #3498db;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    margin-bottom: 0;
}

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

    .nav-links {
        gap: 20px;
    }

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

    .lead {
        font-size: 20px;
    }

    .story-image-offset {
        margin-left: 0;
        margin-right: 0;
    }

    .cta-section {
        padding: 32px 24px;
        margin-left: -24px;
        margin-right: -24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .cookie-buttons {
        justify-content: stretch;
        flex-direction: column;
    }
}