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

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

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

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.5;
}

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

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

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

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

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

.cookie-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.navigation {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

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

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

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

.ad-notice {
    font-size: 12px;
    color: #888;
    font-style: italic;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 3px;
}

.editorial-content {
    max-width: 700px;
    margin: 60px auto 80px;
    padding: 0 20px;
}

.article-header {
    margin-bottom: 50px;
}

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

.article-lead {
    font-size: 22px;
    color: #5a5a5a;
    line-height: 1.6;
    font-style: italic;
}

.article-image {
    margin: 50px 0;
    background: #e8e8e8;
}

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

.article-section {
    margin: 50px 0;
}

.article-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.article-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2a2a2a;
    font-weight: 600;
}

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

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

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

.inline-cta {
    background: #f4f7f9;
    padding: 40px;
    margin: 60px 0;
    border-left: 4px solid #4a90e2;
}

.inline-cta h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

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

.services-inline {
    margin: 80px 0;
}

.service-story {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
}

.service-story:last-child {
    border-bottom: none;
}

.service-story h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-story p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 12px;
}

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

.form-section {
    background: #ffffff;
    padding: 50px;
    margin: 80px 0;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-section > p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 40px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 14px 32px;
    background: #4a90e2;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

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

.disclaimer-section {
    background: #f9f9f9;
    padding: 30px;
    border-left: 3px solid #999;
    margin: 60px 0;
}

.disclaimer-section h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #4a4a4a;
}

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

.footer {
    background: #2a2a2a;
    color: #d0d0d0;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1000px;
    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: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

.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: #ffffff;
}

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

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

.contact-info {
    margin: 40px 0;
}

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

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

.contact-detail strong {
    display: block;
    font-size: 16px;
    color: #2a2a2a;
    margin-bottom: 6px;
}

.contact-detail p {
    font-size: 16px;
    color: #5a5a5a;
}

.legal-content {
    max-width: 800px;
    margin: 60px auto 80px;
    padding: 0 20px;
}

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

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2a2a2a;
}

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

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

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 16px;
    line-height: 1.6;
}

.thanks-container .service-name {
    font-weight: 700;
    color: #4a90e2;
}

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

.thanks-container .back-link:hover {
    background: #357abd;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 32px;
    }

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

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

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

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        justify-content: center;
    }

    .form-section {
        padding: 30px 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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