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

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

.ad-notice {
    background-color: #f4f4f4;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 20px;
    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;
}

.cookie-content p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    flex: 1;
}

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

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

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

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

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

.cookie-btn.reject {
    background-color: #f0f0f0;
    color: #444;
}

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

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

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

.hero-text-narrow {
    margin-bottom: 50px;
}

.hero-text-narrow h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
}

.intro-text {
    font-size: 22px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.hero-image {
    width: 100%;
    margin: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.text-section {
    margin: 80px auto;
    padding: 0 40px;
}

.narrow-column {
    max-width: 720px;
    margin: 0 auto;
}

.text-section h2 {
    font-size: 32px;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 50px 0 20px;
    font-weight: 600;
}

.text-section h3 {
    font-size: 24px;
    line-height: 1.4;
    color: #2c2c2c;
    margin: 35px 0 15px;
    font-weight: 600;
}

.text-section p {
    margin-bottom: 24px;
}

.text-section ul {
    margin: 20px 0 30px 30px;
    line-height: 1.8;
}

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

.inline-image {
    margin: 50px 0;
}

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

.inline-image figcaption {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #777;
    margin-top: 12px;
    text-align: center;
    font-style: italic;
}

.highlight-section {
    background-color: #f9f9f9;
    padding: 60px 40px;
    margin: 80px 0;
}

.editorial-quote {
    max-width: 720px;
    margin: 0 auto;
    font-size: 28px;
    line-height: 1.5;
    color: #333;
    font-style: italic;
    font-weight: 400;
    text-align: center;
}

.cta-inline {
    margin: 35px 0;
    padding: 25px;
    background-color: #f5f5f5;
    border-left: 4px solid #1a73e8;
}

.text-link {
    color: #1a73e8;
    text-decoration: underline;
    font-size: 18px;
    transition: color 0.2s ease;
}

.text-link:hover {
    color: #1557b0;
}

.services-preview {
    margin: 100px auto;
    padding: 0 40px;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 35px;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

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

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

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

.price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 28px;
    color: #1a1a1a;
    font-weight: 600;
    margin: 20px 0;
}

.select-service-btn {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.select-service-btn:hover {
    background-color: #1557b0;
}

.form-section {
    margin: 100px auto;
    padding: 60px 40px;
    background-color: #f9f9f9;
}

.selected-service-display {
    background-color: #e8f0fe;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
}

.selected-service-display p {
    margin: 0;
    color: #1a73e8;
    font-weight: 500;
}

.contact-form {
    margin-top: 40px;
}

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

.form-group label {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
    font-weight: 500;
}

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

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-btn:hover {
    background-color: #1557b0;
}

.disclaimer-section {
    margin: 80px auto;
    padding: 40px;
    background-color: #fff9e6;
    border-left: 4px solid #f0ad4e;
}

.disclaimer {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    font-style: italic;
}

.main-footer {
    background-color: #2c2c2c;
    color: #c0c0c0;
    padding: 60px 40px 30px;
    margin-top: 100px;
}

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

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

.footer-column h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #c0c0c0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

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

.footer-bottom p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 13px;
    color: #888;
}

.page-header {
    margin: 60px auto 40px;
    padding: 0 40px;
}

.page-header h1 {
    max-width: 720px;
    margin: 0 auto;
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: 600;
}

.services-list {
    margin: 60px auto;
    padding: 0 40px;
}

.service-detail {
    max-width: 720px;
    margin: 0 auto 70px;
    padding-bottom: 70px;
    border-bottom: 1px solid #e8e8e8;
}

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

.service-image {
    margin-bottom: 30px;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.service-info h2 {
    font-size: 30px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.service-price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 32px;
    color: #1a1a1a;
    font-weight: 600;
    margin: 25px 0 10px;
}

.service-duration {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

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

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.legal-page {
    padding: 40px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.last-updated {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
}

.cookies-table th,
.cookies-table td {
    border: 1px solid #d0d0d0;
    padding: 12px;
    text-align: left;
}

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #333;
}

.thanks-section {
    min-height: 50vh;
    padding-top: 80px;
}

.thanks-details {
    margin: 30px 0;
    padding: 20px;
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
}

.thanks-details p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    color: #2e7d32;
}

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

    .nav-links {
        gap: 20px;
    }

    .hero-text-narrow h1 {
        font-size: 36px;
    }

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

    .text-section,
    .hero-editorial,
    .services-preview,
    .form-section,
    .page-header,
    .services-list {
        padding: 0 20px;
    }

    .editorial-quote {
        font-size: 22px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: space-between;
    }
}