* {
    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;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', sans-serif;
}

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

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

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

.editorial-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    background-color: #e8e8e8;
}

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

.article-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.article-content {
    margin-top: 50px;
}

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

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.article-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.article-content h2 {
    font-size: 36px;
    margin-top: 60px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.article-content h3 {
    font-size: 26px;
    margin-top: 45px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #2a2a2a;
}

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

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

.image-caption {
    padding: 15px 20px;
    font-size: 15px;
    color: #666;
    font-style: italic;
    background-color: #f5f5f5;
}

.pullquote {
    margin: 50px 0;
    padding: 30px 40px;
    border-left: 4px solid #1a1a1a;
    background-color: #f9f9f9;
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    color: #1a1a1a;
}

.cta-inline {
    margin: 60px 0;
    padding: 40px;
    background-color: #2c2c2c;
    text-align: center;
}

.cta-text {
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
}

.cta-link {
    display: inline-block;
    padding: 14px 35px;
    background-color: #fff;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
    font-family: 'Helvetica Neue', sans-serif;
}

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

.services-reveal {
    margin: 70px 0;
    padding: 60px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.services-reveal h2 {
    margin-top: 0;
    text-align: center;
}

.services-intro {
    text-align: center;
    font-size: 19px;
    margin-bottom: 50px;
    color: #4a4a4a;
}

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

.service-card {
    padding: 35px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.service-card h3 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 0;
    font-family: 'Helvetica Neue', sans-serif;
}

.select-service-btn {
    padding: 12px 28px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Helvetica Neue', sans-serif;
}

.select-service-btn:hover {
    background-color: #3a3a3a;
}

.form-section {
    margin: 60px 0;
    padding: 50px 40px;
    background-color: #f5f5f5;
}

.form-section h2 {
    margin-top: 0;
}

.inquiry-form {
    margin-top: 30px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #fff;
}

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

.submit-btn {
    padding: 14px 40px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Helvetica Neue', sans-serif;
}

.submit-btn:hover {
    background-color: #3a3a3a;
}

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

.final-cta p {
    font-size: 22px;
    color: #fff;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background-color: #fff;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
    font-family: 'Helvetica Neue', sans-serif;
}

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

.main-footer {
    background-color: #2c2c2c;
    color: #bbb;
    padding: 60px 30px 30px;
}

.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 h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    margin-top: 30px;
}

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

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

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

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

.cookie-content p {
    color: #fff;
    font-size: 14px;
    flex: 1;
    min-width: 250px;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
    font-family: 'Helvetica Neue', sans-serif;
}

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

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

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

.cookie-btn.reject:hover {
    background-color: #3a3a3a;
}

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

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-page p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.contact-info {
    margin: 50px 0;
    padding: 40px;
    background-color: #f5f5f5;
}

.info-item {
    margin-bottom: 30px;
}

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

.info-item p {
    font-size: 16px;
    color: #2c2c2c;
}

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

.services-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

.services-page .intro {
    font-size: 19px;
    text-align: center;
    margin-bottom: 60px;
    color: #4a4a4a;
}

.service-detail {
    margin-bottom: 50px;
    padding: 40px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.service-detail h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-detail p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #4a4a4a;
}

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

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

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

.about-page p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;
    color: #2c2c2c;
}

.about-page h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

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

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #2c2c2c;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #2c2c2c;
}

.thanks-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 30px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-page p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.thanks-page .back-link {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 35px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
}

.thanks-page .back-link:hover {
    background-color: #3a3a3a;
}

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

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

    .nav-links {
        gap: 20px;
    }

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

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