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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    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;
}

.brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

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

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

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

.hero-editorial {
    padding: 80px 20px 60px;
    background-color: #ffffff;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto 50px;
    text-align: center;
}

.hero-content-narrow h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtext {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
}

.hero-image-editorial {
    max-width: 900px;
    margin: 0 auto;
    background-color: #e8e8e8;
}

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

.content-flow {
    background-color: #fafafa;
}

.story-section {
    padding: 70px 20px;
    background-color: #ffffff;
}

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

.story-section h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #1a1a1a;
}

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.inline-image-section {
    padding: 0;
    background-color: #f5f5f5;
}

.inline-image-section img {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.cta-inline {
    margin-top: 35px;
}

.btn-text-link {
    display: inline-block;
    font-size: 18px;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 3px;
    transition: opacity 0.3s ease;
}

.btn-text-link:hover {
    opacity: 0.7;
}

.service-showcase {
    padding: 80px 20px;
    background-color: #fafafa;
}

.service-showcase h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
}

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

.service-item {
    margin-bottom: 60px;
    background-color: #e8e8e8;
}

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

.service-text {
    padding: 35px 40px;
    background-color: #ffffff;
}

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

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

.service-price {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 20px;
}

.form-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.form-section h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-section p {
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    background-color: #fafafa;
    color: #2c2c2c;
    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: #1a1a1a;
}

.btn-submit {
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #1a1a1a;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 50px 20px;
    background-color: #f5f5f5;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

.main-footer {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 60px 20px 40px;
}

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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 {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-color: #ffffff;
}

.thanks-content {
    max-width: 680px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.thanks-content .btn-text-link {
    margin-top: 30px;
}

.about-intro {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-story {
    padding: 70px 20px;
    background-color: #fafafa;
}

.about-image-full {
    padding: 0;
    background-color: #e8e8e8;
}

.about-image-full img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.services-intro {
    padding: 80px 20px;
    background-color: #ffffff;
}

.services-grid {
    padding: 60px 20px;
    background-color: #fafafa;
}

.contact-intro {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-details {
    padding: 60px 20px;
    background-color: #fafafa;
}

.contact-info-block {
    margin-bottom: 35px;
}

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

.contact-info-block p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.legal-page h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

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

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

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

    .hero-content-narrow h1 {
        font-size: 38px;
    }

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

    .story-section h2 {
        font-size: 30px;
    }

    .service-text {
        padding: 25px 20px;
    }

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

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