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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    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 {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

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

.btn-accept {
    background: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

.btn-reject {
    background: #666;
    color: white;
}

.btn-reject:hover {
    background: #555;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.main-nav a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #1a1a1a;
}

.ad-disclosure {
    font-size: 12px;
    color: #999;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.editorial-flow {
    max-width: 100%;
}

.hero-editorial {
    max-width: 800px;
    margin: 80px auto 60px;
    padding: 0 40px;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 400;
}

.hero-intro {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-image-wrapper {
    margin-top: 40px;
    background-color: #e8e8e8;
}

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

.story-section,
.insight-section,
.services-preview,
.form-section,
.trust-section,
.final-cta {
    margin: 80px 0;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

.narrow-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.narrow-content h3 {
    font-size: 26px;
    margin: 40px 0 16px;
    font-weight: 400;
    color: #2c2c2c;
}

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

.inline-image-block {
    margin: 50px 0;
    background-color: #f0f0f0;
}

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

.image-caption {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 12px;
    text-align: center;
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
}

.insight-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #3a3a3a;
}

.insight-image {
    flex: 1;
    background-color: #e5e5e5;
}

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

.service-cards-inline {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 32px;
    border: 1px solid #ddd;
    transition: border-color 0.3s ease;
}

.service-card:hover {
    border-color: #999;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
}

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

.select-service-btn {
    background: #1a1a1a;
    color: #fff;
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service-btn:hover {
    background: #333;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 400;
}

.form-container > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

.selected-service-info {
    background: #f5f5f5;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #1a1a1a;
}

.selected-service-info p {
    font-size: 15px;
    color: #333;
    margin: 0;
}

.selected-service-info.active {
    background: #e8f5e9;
    border-left-color: #4CAF50;
}

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

.contact-form label {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.submit-btn {
    background: #1a1a1a;
    color: #fff;
    padding: 14px 32px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover:not(:disabled) {
    background: #333;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.testimonial-block {
    margin: 40px 0;
    padding: 30px;
    background: #f9f9f9;
    border-left: 3px solid #1a1a1a;
}

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

.testimonial-author {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.final-cta {
    background: #1a1a1a;
    padding: 80px 40px;
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 400;
}

.cta-content p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 32px;
}

.cta-link {
    display: inline-block;
    background: #fff;
    color: #1a1a1a;
    padding: 14px 36px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-link:hover {
    background: #f0f0f0;
}

.site-footer {
    background: #2c2c2c;
    color: #ccc;
    padding: 60px 40px 30px;
}

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

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

.footer-column p,
.footer-column ul {
    font-size: 14px;
    line-height: 1.8;
}

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

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: #242424;
    border-left: 3px solid #666;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

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

.page-header {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 40px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 400;
}

.page-header p {
    font-size: 18px;
    color: #ddd;
}

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

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    font-weight: 400;
}

.page-content h3 {
    font-size: 24px;
    margin: 30px 0 16px;
    font-weight: 500;
}

.page-content p,
.page-content ul,
.page-content ol {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.page-content ul,
.page-content ol {
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
}

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

.service-detail-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 40px;
}

.service-detail-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-detail-card .service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 20px 0;
}

.service-detail-card p {
    font-size: 17px;
    color: #555;
}

.contact-info {
    background: #f9f9f9;
    padding: 40px;
    margin: 40px 0;
    border-left: 4px solid #1a1a1a;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #3a3a3a;
}

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

.about-image {
    margin: 40px 0;
    background-color: #e8e8e8;
}

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

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

.thanks-container h1 {
    font-size: 42px;
    color: #4CAF50;
    margin-bottom: 24px;
    font-weight: 400;
}

.thanks-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.thanks-container .selected-service-display {
    background: #f5f5f5;
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}

.thanks-container .back-link {
    display: inline-block;
    margin-top: 30px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.thanks-container .back-link:hover {
    color: #4CAF50;
}

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

    .main-nav {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .hero-intro {
        font-size: 17px;
    }

    .insight-wrapper {
        flex-direction: column;
    }

    .narrow-content h2 {
        font-size: 28px;
    }

    .footer-content {
        flex-direction: column;
    }
}