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

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

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #9fb8d0;
    text-decoration: underline;
}

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

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

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

.cookie-accept:hover {
    background-color: #5a8bbf;
}

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

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

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

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

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

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

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

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

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

.hero-text-overlay h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

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

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

.content-narrow p {
    margin-bottom: 24px;
    font-size: 18px;
}

.content-narrow h2 {
    font-size: 34px;
    margin-top: 50px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.content-narrow h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 18px;
    font-weight: 600;
    color: #2c2c2c;
}

.content-narrow h4 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 14px;
    font-weight: 600;
    color: #3a3a3a;
}

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

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

.highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #4a7ba7;
    padding: 30px;
    margin: 40px 0;
}

.highlight-box h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 22px;
    color: #2c2c2c;
}

.highlight-box p {
    margin-bottom: 0;
    font-size: 17px;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 40px;
    background-color: #fafbfc;
    border-radius: 4px;
}

.testimonial-inline blockquote {
    border: none;
    padding: 0;
}

.testimonial-inline p {
    font-size: 19px;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-inline cite {
    display: block;
    font-size: 15px;
    color: #666;
    font-style: normal;
}

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

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

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

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

.service-card p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #4a4a4a;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #4a7ba7;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #4a7ba7;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #5a8bbf;
}

.btn-secondary {
    background-color: transparent;
    color: #4a7ba7;
    border: 2px solid #4a7ba7;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #4a7ba7;
    color: #ffffff;
}

.cta-section {
    background-color: #f0f4f8;
    padding: 50px 40px;
    text-align: center;
    margin: 60px 0;
    border-radius: 6px;
}

.cta-section h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 28px;
}

.cta-section p {
    margin-bottom: 24px;
    font-size: 17px;
}

.faq-section {
    margin: 40px 0;
}

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

.faq-item h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.faq-item p {
    margin-bottom: 0;
    color: #4a4a4a;
}

.form-section {
    background-color: #f8f9fa;
    padding: 80px 30px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.form-container > p {
    margin-bottom: 30px;
    color: #4a4a4a;
    font-size: 16px;
}

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

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

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

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

.btn-submit {
    background-color: #4a7ba7;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #5a8bbf;
}

.disclaimer-section {
    background-color: #fff8e6;
    padding: 40px 30px;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 22px;
    color: #1a1a1a;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    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 h4 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 18px;
    color: #ffffff;
}

.footer-section p {
    font-size: 15px;
    color: #b0b0b0;
    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: 15px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

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

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

    .content-narrow {
        padding: 40px 20px;
    }

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

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

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

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