* {
    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;
    display: flex;
    min-height: 100vh;
}

.ad-disclosure {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 15px;
    font-size: 11px;
    z-index: 1000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 28px;
    width: 240px;
    height: calc(100vh - 28px);
    background-color: #ffffff;
    border-right: 1px solid #e0e0e0;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.nav-brand {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-links {
    list-style: none;
    flex-grow: 1;
}

.nav-links li {
    margin-bottom: 20px;
}

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

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

.nav-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.nav-footer-links a {
    font-size: 12px;
    color: #777;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.main-content {
    margin-left: 240px;
    margin-top: 28px;
    width: calc(100% - 240px);
    padding: 0;
}

.hero-editorial {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #3a3a3a;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 60px;
    max-width: 600px;
    color: #ffffff;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    padding: 40px;
    border-radius: 2px;
}

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-text-overlay p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
}

.editorial-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 60px;
}

.content-block {
    margin-bottom: 60px;
}

.content-block.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

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

.content-block h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.content-block p {
    font-size: 18px;
    margin-bottom: 20px;
}

.content-block-image-inline {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 80px;
}

.content-block-image-inline.reverse {
    flex-direction: row-reverse;
}

.inline-image-left,
.inline-image-right {
    flex: 0 0 45%;
    background-color: #e5e5e5;
}

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

.inline-text-right,
.inline-text-left {
    flex: 1;
}

.inline-text-right h2,
.inline-text-left h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
}

.inline-text-right p,
.inline-text-left p {
    font-size: 17px;
    margin-bottom: 18px;
}

.services-showcase {
    margin: 80px 0;
}

.service-card-editorial {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 100px;
}

.service-card-editorial.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 45%;
    background-color: #d0d0d0;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-highlights {
    list-style-position: inside;
    margin: 20px 0;
    padding-left: 0;
}

.service-highlights li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.service-details {
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.service-duration {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
}

.service-price {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.btn-select-service {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select-service:hover {
    background-color: #3a3a3a;
}

.testimonial-block {
    background-color: #f5f5f5;
    padding: 50px 60px;
    margin: 80px 0;
    border-left: 4px solid #1a1a1a;
}

.testimonial-block blockquote {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    color: #2c2c2c;
}

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

.form-section {
    margin: 80px 0;
    max-width: 600px;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.form-container {
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 17px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.disclaimer-section {
    margin-top: 80px;
    padding: 30px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.page-header {
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 400;
    color: #1a1a1a;
}

.team-section {
    margin: 80px 0;
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.team-member {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.member-image {
    flex: 0 0 200px;
    background-color: #d0d0d0;
}

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

.member-info {
    flex: 1;
}

.member-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.member-info p {
    font-size: 16px;
    line-height: 1.7;
}

.contact-info-section {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin: 60px 0;
}

.contact-block {
    flex: 1 1 250px;
}

.contact-block h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
}

.thanks-section {
    max-width: 700px;
    margin: 80px auto;
    text-align: center;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 25px;
}

.thanks-message {
    font-size: 19px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.confirmation-details {
    background-color: #f5f5f5;
    padding: 30px;
    margin: 40px 0;
    text-align: left;
}

.confirmation-details h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.next-steps {
    text-align: left;
    margin: 40px 0;
}

.next-steps h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps li {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.contact-reminder {
    margin: 40px 0;
    padding: 25px;
    background-color: #f9f9f9;
    border-left: 3px solid #1a1a1a;
}

.contact-reminder p {
    font-size: 15px;
}

.thanks-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.btn-return,
.btn-secondary {
    padding: 14px 30px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.btn-return:hover {
    background-color: #3a3a3a;
}

.btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.legal-content {
    max-width: 900px;
}

.legal-date {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 20px;
    margin: 30px 0 15px 0;
    color: #2c2c2c;
}

.legal-section p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-section li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

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

@media (max-width: 1024px) {
    .nav-sidebar {
        width: 200px;
    }

    .main-content {
        margin-left: 200px;
        width: calc(100% - 200px);
    }

    .editorial-content {
        padding: 60px 40px;
    }

    .content-block-image-inline,
    .service-card-editorial {
        flex-direction: column;
    }

    .inline-image-left,
    .inline-image-right,
    .service-image {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .nav-sidebar {
        display: none;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

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

    .hero-text-overlay {
        bottom: 30px;
        left: 20px;
        right: 20px;
        padding: 25px;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }
}