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

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

.ad-notice {
    background-color: #f4f4f4;
    color: #666;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
}

.floating-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

.hero-editorial {
    position: relative;
    height: 75vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-editorial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 10;
    max-width: 900px;
    padding: 0 30px;
}

.hero-overlay h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtext {
    font-size: 19px;
    line-height: 1.6;
    opacity: 0.95;
    font-style: italic;
}

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

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

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

.content-narrow h2 {
    font-size: 32px;
    line-height: 1.4;
    margin: 60px 0 25px 0;
    font-weight: 500;
    color: #1a1a1a;
}

.content-narrow p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #4a4a4a;
}

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

.citation {
    color: #2d5f8d;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.citation:hover {
    text-decoration: underline;
}

blockquote {
    border-left: 4px solid #2d5f8d;
    padding: 25px 30px;
    margin: 45px 0;
    background-color: #f7f9fb;
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    color: #2a2a2a;
}

.inline-cta {
    text-align: center;
    margin: 50px 0;
}

.cta-link {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2d5f8d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-link:hover {
    background-color: #234a6d;
    transform: translateY(-2px);
}

.service-preview {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 50px 0;
    padding: 35px;
    background-color: #fafafa;
    border-radius: 6px;
}

.service-preview.reverse {
    flex-direction: row-reverse;
}

.service-preview img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    background-color: #e0e0e0;
}

.preview-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.preview-text p {
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

.testimonial-card {
    background-color: #f4f7f9;
    padding: 35px;
    margin: 50px 0;
    border-left: 5px solid #5a8ab5;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
    color: #2a2a2a;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.insight-box {
    background-color: #fff9e6;
    border: 2px solid #f4d03f;
    padding: 30px;
    margin: 45px 0;
    border-radius: 6px;
}

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

.insight-box p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin: 40px 0;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 6px;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.service-card.featured {
    border: 2px solid #2d5f8d;
    background-color: #f7f9fb;
}

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

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

.service-price {
    font-size: 26px;
    font-weight: 600;
    color: #2d5f8d;
    margin: 20px 0;
}

.select-service {
    width: 100%;
    padding: 14px;
    background-color: #2d5f8d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #234a6d;
}

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f7f9fb;
    border-radius: 8px;
}

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

.contact-form {
    max-width: 100%;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 16px 50px;
    background-color: #2d5f8d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #234a6d;
}

.disclaimer-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #f4f4f4;
    border-left: 4px solid #999;
    border-radius: 4px;
}

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

.disclaimer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.references-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #fafafa;
    border-radius: 4px;
}

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

.references-list {
    list-style-position: inside;
    padding-left: 0;
}

.references-list li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #4a4a4a;
}

.references-list a {
    color: #2d5f8d;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.site-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 50px 30px 20px 30px;
}

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

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #5a8ab5;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: #ffffff;
    padding: 25px 30px;
    display: none;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.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 {
    flex: 1 1 400px;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: #5a8ab5;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #2d5f8d;
    color: #ffffff;
}

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

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

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

.page-header {
    padding: 100px 30px 60px 30px;
    background: linear-gradient(135deg, #2d5f8d 0%, #5a8ab5 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 400;
}

.page-header p {
    font-size: 19px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

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

.page-content h2 {
    font-size: 28px;
    margin: 40px 0 20px 0;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 22px;
    margin: 30px 0 15px 0;
    color: #2a2a2a;
}

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

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.page-content li {
    margin-bottom: 10px;
    font-size: 17px;
    color: #4a4a4a;
}

.contact-info {
    background-color: #f7f9fb;
    padding: 35px;
    border-radius: 6px;
    margin: 30px 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 17px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.service-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 35px;
    border-radius: 6px;
}

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

.service-item p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-item .price {
    font-size: 28px;
    font-weight: 600;
    color: #2d5f8d;
    margin-top: 20px;
}

.thanks-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 60px 40px;
    background-color: #f7f9fb;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.thanks-container .selected-service {
    font-weight: 600;
    color: #2d5f8d;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    background-color: #2d5f8d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

.thanks-container a:hover {
    background-color: #234a6d;
}

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

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

    .hero-subtext {
        font-size: 17px;
    }

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

    .service-preview {
        flex-direction: column;
    }

    .service-preview.reverse {
        flex-direction: column;
    }

    .service-preview img {
        width: 100%;
        height: 250px;
    }

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

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

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

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