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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    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-actions {
    display: flex;
    gap: 15px;
}

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

.cookie-btn.accept {
    background-color: #4a90e2;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #357abd;
}

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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    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: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #666666;
    padding: 6px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-style: italic;
}

.editorial-story {
    background-color: #ffffff;
}

.story-hero {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.hero-text {
    max-width: 800px;
    margin: -120px auto 0;
    position: relative;
    background-color: #ffffff;
    padding: 50px 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.subtitle {
    font-size: 20px;
    color: #555555;
    line-height: 1.6;
    font-style: italic;
}

.story-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 30px 80px;
}

.story-content section {
    margin-bottom: 70px;
}

.story-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.4;
}

.story-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 600;
}

.opening-line {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    object-fit: cover;
    background-color: #f0f0f0;
}

.quote-block {
    margin: 50px 0;
    padding: 40px;
    background-color: #f8f8f8;
    border-left: 4px solid #4a90e2;
}

.quote-block blockquote {
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.quote-block cite {
    font-size: 16px;
    color: #666666;
    font-style: normal;
}

.citation {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.citation:hover {
    text-decoration: underline;
}

.cta-inline {
    margin: 50px 0;
    padding: 35px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-inline p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #357abd;
}

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

.testimonial-card {
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 3px solid #4a90e2;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #666666;
    font-weight: 600;
}

.benefits-list {
    margin: 30px 0;
    padding-left: 30px;
}

.benefits-list li {
    font-size: 18px;
    margin-bottom: 15px;
    color: #3a3a3a;
    line-height: 1.6;
}

.services-reveal {
    background-color: #f5f5f5;
    padding: 60px 40px;
    margin: 0 -30px;
}

.services-reveal h2 {
    text-align: center;
    margin-bottom: 20px;
}

.services-reveal > p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    background-color: #ffffff;
    padding: 35px;
    border: 1px solid #e0e0e0;
}

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

.service-item p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 20px;
}

.service-select {
    padding: 12px 28px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.service-select:hover {
    background-color: #357abd;
}

.service-item.selected {
    border-color: #4a90e2;
    border-width: 2px;
}

.form-section {
    background-color: #ffffff;
    padding: 50px 40px;
    margin: 50px -30px 0;
    border-top: 3px solid #4a90e2;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.form-section > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

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

.submit-btn:hover {
    background-color: #357abd;
}

.disclaimer-section {
    margin-top: 60px;
    padding: 30px;
    background-color: #fef9e7;
    border: 1px solid #f4d03f;
}

.disclaimer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #856404;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #856404;
}

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

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

.references-list {
    padding-left: 20px;
}

.references-list li {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.references-list a {
    color: #4a90e2;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 30px 30px;
}

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

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    font-size: 14px;
    color: #888888;
}

.page-header {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: #b0b0b0;
}

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

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

.service-card {
    display: flex;
    gap: 40px;
    padding: 40px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

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

.service-image-container {
    flex: 0 0 400px;
    height: 300px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-info .service-price {
    font-size: 32px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 25px;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 40px auto;
    display: block;
    object-fit: cover;
    background-color: #f0f0f0;
}

.contact-info {
    max-width: 600px;
    margin: 50px auto;
}

.info-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f9f9f9;
    border-left: 4px solid #4a90e2;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.info-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background-color: #ffffff;
    border: 2px solid #4a90e2;
}

.thanks-container h1 {
    font-size: 48px;
    color: #4a90e2;
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.thanks-container .selected-service {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 30px 0;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.thanks-container a:hover {
    background-color: #357abd;
}

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-text {
        margin-top: -80px;
        padding: 30px;
    }

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

    .subtitle {
        font-size: 18px;
    }

    .story-content {
        padding: 0 20px 60px;
    }

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

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-image-container {
        flex: 0 0 auto;
        width: 100%;
    }

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

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