* {
    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;
}

.ad-disclosure {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    font-family: 'Arial', sans-serif;
    border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

.nav-links a {
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.2s;
}

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

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

.article-hero {
    margin-bottom: 60px;
}

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

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

.article-header-text {
    max-width: 720px;
    margin: 60px auto 0;
    padding: 0 30px;
}

.article-header-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.article-intro {
    font-size: 22px;
    line-height: 1.6;
    color: #4a4a4a;
    font-style: italic;
}

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

.article-section {
    margin-bottom: 80px;
}

.lead-paragraph {
    font-size: 21px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.narrow-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #2c2c2c;
}

.narrow-content h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 400;
}

.narrow-content h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 600;
}

.inline-image-wrapper {
    margin: 50px 0;
    width: 100%;
    background-color: #f5f5f5;
}

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

.inline-cta {
    background-color: #f8f8f8;
    border-left: 4px solid #3a3a3a;
    padding: 30px;
    margin: 50px 0;
}

.inline-cta p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.cta-link {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 600;
}

.cta-link:hover {
    color: #4a4a4a;
}

.service-highlight-section {
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 60px 0;
    margin: 60px -30px;
}

.service-highlight-section h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-highlight-section > p {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 50px;
    padding: 0 30px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 30px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
    padding: 35px;
    transition: background-color 0.2s;
}

.service-card:hover {
    background-color: #f5f5f5;
}

.service-card h4 {
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
    color: #4a4a4a;
}

.service-price {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.select-service-btn {
    font-family: 'Arial', sans-serif;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.select-service-btn:hover {
    background-color: #1a1a1a;
}

.see-all-services {
    text-align: center;
    margin-top: 40px;
}

.see-all-services a {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    text-decoration: underline;
}

.inquiry-form-section {
    background-color: #f8f8f8;
    padding: 50px;
    margin: 60px -30px;
}

.inquiry-form-section h3 {
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-family: 'Georgia', serif;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
}

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

.submit-btn {
    font-family: 'Arial', sans-serif;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    font-style: italic;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.site-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    font-family: 'Arial', sans-serif;
    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 {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.2s;
}

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

.copyright {
    font-size: 13px;
    color: #888;
}

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

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

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

.cookie-content p {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

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

.cookie-btn {
    font-family: 'Arial', sans-serif;
    padding: 10px 24px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
}

.cookie-btn.accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

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

.cookie-btn.reject:hover {
    background-color: #2c2c2c;
}

.services-page {
    padding: 60px 0;
}

.page-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
    padding: 0 30px;
}

.page-header h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.header-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
}

.services-layout {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.service-detail {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.service-detail.reverse-layout {
    flex-direction: row-reverse;
}

.service-image-wrapper {
    flex: 1;
    min-width: 0;
    background-color: #f0f0f0;
}

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

.service-info {
    flex: 1;
    min-width: 0;
}

.service-info h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-duration {
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
}

.service-pricing {
    font-family: 'Arial', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 25px;
}

.services-cta-section {
    text-align: center;
    max-width: 720px;
    margin: 100px auto 0;
    padding: 60px 30px;
    background-color: #f8f8f8;
}

.services-cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.cta-button {
    display: inline-block;
    font-family: 'Arial', sans-serif;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #1a1a1a;
}

.about-page {
    padding: 60px 0;
}

.about-content {
    max-width: 100%;
}

.about-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
    padding: 0 30px;
}

.about-header h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.about-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
}

.about-image-section {
    width: 100%;
    margin: 60px 0;
    background-color: #f0f0f0;
}

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

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

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

.approach-highlight {
    background-color: #f8f8f8;
    padding: 30px;
    margin: 40px 0;
}

.approach-highlight p {
    font-size: 18px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 0;
}

.about-cta-section {
    text-align: center;
    max-width: 720px;
    margin: 80px auto 0;
    padding: 60px 30px;
    background-color: #f8f8f8;
}

.about-cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.contact-page {
    padding: 60px 0;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-section {
    flex: 1;
}

.contact-info-section h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.contact-intro {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 50px;
}

.contact-details {
    margin-bottom: 50px;
}

.contact-detail-item {
    margin-bottom: 40px;
}

.contact-detail-item h3 {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-detail-item p {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 5px;
}

.email-display {
    font-weight: 600;
    color: #2c2c2c;
}

.contact-note {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

.contact-approach {
    background-color: #f8f8f8;
    padding: 30px;
    margin-top: 50px;
}

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

.contact-approach p {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.contact-approach p:last-child {
    margin-bottom: 0;
}

.contact-image-section {
    flex: 1;
    background-color: #f0f0f0;
}

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

.thanks-page {
    padding: 100px 0;
}

.thanks-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 400;
}

.thanks-message {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #2c2c2c;
}

.thanks-details {
    text-align: left;
    margin-bottom: 50px;
}

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

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.action-button {
    display: inline-block;
    font-family: 'Arial', sans-serif;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.action-button:hover {
    background-color: #1a1a1a;
}

.action-link {
    display: inline-block;
    font-family: 'Arial', sans-serif;
    color: #2c2c2c;
    padding: 16px 40px;
    font-size: 16px;
    text-decoration: underline;
}

.action-link:hover {
    color: #1a1a1a;
}

.legal-page {
    padding: 60px 0;
}

.legal-content {
    margin-bottom: 60px;
}

.legal-content h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 400;
}

.legal-updated {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: #888;
    margin-bottom: 50px;
}

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

.legal-section h2 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 400;
}

.legal-section h3 {
    font-family: 'Arial', sans-serif;
    font-size: 19px;
    line-height: 1.4;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 600;
}

.legal-section p {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.legal-section ul {
    margin: 20px 0 20px 30px;
}

.legal-section ul li {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a4a4a;
}

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

    .article-intro {
        font-size: 19px;
    }

    .narrow-content p {
        font-size: 17px;
    }

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

    .service-detail,
    .service-detail.reverse-layout {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
        gap: 50px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
