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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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 {
    flex: 1;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: background-color 0.3s ease;
}

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

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

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

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

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

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

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

.ad-disclosure {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 11px;
    color: #666;
    background-color: #f5f5f5;
    padding: 4px 10px;
    border-radius: 3px;
}

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

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: color 0.3s ease;
}

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

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

.article-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #2c3e50;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 24px;
}

.hero-text-overlay h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    opacity: 0.95;
}

.article-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 64px 24px;
}

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

.lead-text {
    font-size: 21px;
    line-height: 1.65;
    color: #2c2c2c;
    margin-bottom: 24px;
}

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

.inline-image-block {
    margin: 56px 0;
    text-align: center;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.image-caption {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.content-section {
    margin: 48px 0;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

.inline-content-image {
    width: 100%;
    margin: 32px 0;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.insight-section {
    margin: 56px 0;
}

.insight-box {
    background-color: #f8f9fa;
    padding: 40px;
    border-left: 4px solid #4a90e2;
    border-radius: 4px;
}

.insight-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.insight-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0;
}

.cta-inline {
    margin: 48px 0;
    padding: 32px;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
    border-radius: 4px;
}

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

.btn-inline {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

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

.testimonial-inline {
    margin: 56px 0;
    padding: 40px;
    background-color: #fafafa;
    border-radius: 4px;
}

.testimonial-inline blockquote {
    border: none;
}

.testimonial-inline p {
    font-size: 19px;
    font-style: italic;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 16px;
}

.testimonial-inline cite {
    font-size: 15px;
    font-style: normal;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.services-preview {
    margin: 72px 0;
    padding-top: 48px;
    border-top: 2px solid #e0e0e0;
}

.services-preview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.service-card h3 {
    font-size: 22px;
    padding: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 24px 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.service-price {
    padding: 12px 24px;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.btn-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.consultation-form {
    max-width: 600px;
    margin: 48px auto 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.consultation-form h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.selected-service-display {
    font-size: 15px;
    color: #4a90e2;
    margin-bottom: 24px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    margin-top: 72px;
    padding: 32px;
    background-color: #fff9e6;
    border-radius: 4px;
    border-left: 4px solid #f9c74f;
}

.disclaimer-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.disclaimer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    margin: 0;
}

.main-footer {
    background-color: #2c2c2c;
    color: #cccccc;
    padding: 56px 24px 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

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

.footer-section h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

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

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

.footer-section ul li a:hover {
    color: #4a90e2;
}

.footer-email {
    color: #b0b0b0;
    cursor: default;
}

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

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

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 24px 60px;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    color: #e0e0e0;
    max-width: 720px;
    margin: 0 auto;
}

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

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 64px 24px;
}

.narrow-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.narrow-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.narrow-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #3a3a3a;
}

.narrow-content ul,
.narrow-content ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.narrow-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #3a3a3a;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-item {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-item-content {
    padding: 24px;
}

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

.service-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.service-item-price {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 24px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.thanks-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.thanks-container .btn-inline {
    margin-top: 32px;
}

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

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

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

    .hero-subtitle {
        font-size: 16px;
    }

    .article-body {
        padding: 40px 20px;
    }

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

    .article-body p {
        font-size: 16px;
    }

    .content-section h2 {
        font-size: 26px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

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

    .page-header h1 {
        font-size: 32px;
    }
}
