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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

.ad-notice {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.top-nav {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 18px 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-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

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

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

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

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

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
    padding: 50px 40px 40px;
    color: #ffffff;
}

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 12px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 19px;
    opacity: 0.95;
}

.story-intro,
.centered-text {
    padding: 0 40px;
    margin-bottom: 70px;
}

.opening-line {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 28px;
    color: #495057;
    font-style: italic;
}

.story-intro p,
.centered-text p {
    font-size: 17px;
    margin-bottom: 22px;
    color: #495057;
}

.story-intro h2,
.centered-text h2 {
    font-size: 32px;
    margin: 50px 0 24px;
    color: #2c3e50;
    font-weight: 600;
}

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

.insight-block {
    background: #f8f9fa;
    padding: 60px 40px;
    margin-bottom: 70px;
}

.offset-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.insight-text {
    flex: 1.2;
}

.insight-text h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.insight-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #495057;
}

.insight-image {
    flex: 1;
    background-color: #dee2e6;
}

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

.services-reveal {
    margin-bottom: 70px;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 45px;
    padding: 0 40px;
    margin-top: 50px;
}

.service-card {
    border: 1px solid #dee2e6;
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #2c3e50;
}

.service-card p {
    margin: 0 25px 15px;
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 25px 10px;
}

.select-service-btn {
    display: block;
    width: calc(100% - 50px);
    margin: 20px 25px 25px;
    padding: 14px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.trust-building {
    background: #f8f9fa;
    padding: 60px 40px;
    margin-bottom: 70px;
}

.testimonial {
    background: #ffffff;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid #2c3e50;
}

.testimonial p {
    font-size: 17px;
    color: #495057;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial cite {
    font-size: 15px;
    color: #6c757d;
    font-style: normal;
}

.form-section {
    background: #2c3e50;
    padding: 70px 40px;
    margin-bottom: 0;
    color: #ffffff;
}

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

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #ffffff;
}

.form-intro {
    font-size: 17px;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.9);
}

.editorial-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 2px;
}

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

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

.form-group input {
    width: 100%;
    padding: 13px;
    border: 1px solid #ced4da;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: #f8f9fa;
    color: #495057;
}

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

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

.disclaimer-section {
    background: #f8f9fa;
    padding: 40px;
    margin-bottom: 0;
}

.disclaimer {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.site-footer {
    background: #212529;
    color: #adb5bd;
    padding: 50px 30px 20px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 2px solid #dee2e6;
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

.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 {
    flex: 1;
    margin: 0;
    font-size: 15px;
    color: #495057;
}

.cookie-content a {
    color: #2c3e50;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.cookie-btn.accept:hover {
    background: #1a252f;
}

.cookie-btn.reject {
    background: #e9ecef;
    color: #495057;
}

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

.thanks-message {
    max-width: 700px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background: #f8f9fa;
}

.thanks-message h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #495057;
}

.thanks-message .selected-service {
    font-weight: 600;
    color: #2c3e50;
}

.thanks-message a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-message a:hover {
    background: #1a252f;
}

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

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-page .intro {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 50px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.info-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
}

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

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 26px;
    margin: 40px 0 18px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 20px;
    margin: 30px 0 12px;
    color: #495057;
}

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

.legal-page ul {
    margin: 15px 0 25px 25px;
}

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

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

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

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-hero p {
    font-size: 20px;
    color: #6c757d;
    line-height: 1.6;
}

.about-content {
    margin-bottom: 50px;
}

.about-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.about-image {
    width: 100%;
    height: 400px;
    margin: 40px 0;
    background-color: #e9ecef;
}

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

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

.services-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-page .intro {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 50px;
}

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

.service-item {
    display: flex;
    gap: 35px;
    border: 1px solid #dee2e6;
    padding: 30px;
    background: #ffffff;
}

.service-item-image {
    flex: 0 0 250px;
    height: 200px;
    background-color: #f1f3f5;
}

.service-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item-content {
    flex: 1;
}

.service-item-content h2 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-item-content p {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-item-content .price {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

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

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

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

    .contact-grid {
        flex-direction: column;
    }

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

    .service-item-image {
        flex: 0 0 auto;
        width: 100%;
    }
}