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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: color 0.3s ease;
}

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

.editorial-container {
    max-width: 100%;
    background-color: #fff;
}

.hero-editorial {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #2a2a2a;
}

.hero-editorial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-overlay h1 {
    font-size: 48px;
    color: #fff;
    max-width: 800px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.3;
}

.hero-subtext {
    font-size: 20px;
    color: #e0e0e0;
    max-width: 650px;
    font-style: italic;
}

.story-intro,
.story-body {
    padding: 80px 20px;
    background-color: #fff;
}

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

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

.narrow-text p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #3a3a3a;
}

.narrow-text h2 {
    font-size: 32px;
    margin: 60px 0 24px;
    font-weight: 500;
    color: #1a1a1a;
}

.narrow-text h3 {
    font-size: 24px;
    margin: 40px 0 20px;
    font-weight: 500;
    color: #2a2a2a;
}

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

.image-break {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

.pull-quote {
    font-size: 26px;
    font-style: italic;
    line-height: 1.6;
    margin: 50px 0;
    padding: 30px 40px;
    border-left: 4px solid #3a3a3a;
    background-color: #f9f9f9;
    color: #2a2a2a;
}

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

.insight-box {
    background-color: #f5f5f5;
    padding: 35px;
    margin: 40px 0;
    border-radius: 2px;
}

.insight-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    margin-top: 0;
}

.insight-box ol,
.story-list {
    margin-left: 25px;
    line-height: 1.9;
}

.insight-box li,
.story-list li {
    margin-bottom: 12px;
    font-size: 17px;
}

.cta-inline {
    background-color: #2a2a2a;
    padding: 80px 40px;
    text-align: center;
    color: #fff;
}

.cta-content h3 {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-content p {
    font-size: 19px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fff;
    color: #2a2a2a;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border-radius: 2px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #2a2a2a;
    border: 2px solid #2a2a2a;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border-radius: 2px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2a2a2a;
    color: #fff;
}

.services-reveal {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.service-cards {
    max-width: 1200px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: #fff;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease;
}

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

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

.service-content {
    padding: 35px;
}

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

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

.service-price {
    font-size: 28px;
    font-weight: 600;
    color: #2a2a2a;
    margin: 25px 0 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-select {
    padding: 14px 32px;
    background-color: #2a2a2a;
    color: #fff;
    border: none;
    font-size: 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    border-radius: 2px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

.testimonial-section {
    padding: 80px 20px;
    background-color: #fff;
}

.testimonial {
    font-size: 22px;
    font-style: italic;
    line-height: 1.7;
    margin: 40px auto;
    padding: 40px;
    max-width: 720px;
    background-color: #f9f9f9;
    border-left: 4px solid #2a2a2a;
}

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

.form-section {
    padding: 80px 20px;
    background-color: #2a2a2a;
    color: #fff;
}

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

.form-container h2 {
    font-size: 34px;
    margin-bottom: 15px;
    font-weight: 400;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 40px;
    color: #e0e0e0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #fff;
    color: #2a2a2a;
    border: none;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

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

.final-thought {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.closing-text {
    font-size: 24px;
    font-style: italic;
    color: #3a3a3a;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #252525;
    border-radius: 2px;
    font-size: 13px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    padding: 25px 40px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    margin: 0;
    font-size: 15px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    border-radius: 2px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #fff;
    color: #2a2a2a;
}

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

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

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

.page-container {
    max-width: 100%;
    background-color: #fff;
}

.page-header {
    padding: 80px 40px 40px;
    text-align: center;
    background-color: #f9f9f9;
}

.page-header h1 {
    font-size: 44px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 400;
}

.page-subtitle {
    font-size: 20px;
    color: #666;
    font-style: italic;
}

.about-story {
    padding: 60px 20px;
}

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

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

.text-block {
    margin-bottom: 50px;
}

.text-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 500;
}

.text-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.text-block ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.text-block li {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 10px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.values-grid {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background-color: #f9f9f9;
    border-left: 3px solid #2a2a2a;
}

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

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.cta-section {
    text-align: center;
    padding: 60px 40px;
    background-color: #2a2a2a;
    color: #fff;
    margin-top: 60px;
}

.cta-section h3 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 400;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.services-page {
    padding: 60px 20px;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro p {
    font-size: 19px;
    line-height: 1.7;
    color: #3a3a3a;
}

.service-detailed-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.service-visual {
    flex: 1;
    min-width: 300px;
}

.service-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #f0f0f0;
}

.service-details {
    flex: 1.5;
    min-width: 350px;
}

.service-details h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.service-details h4 {
    font-size: 18px;
    margin: 25px 0 12px;
    color: #2a2a2a;
}

.service-details ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.service-details li {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.service-pricing {
    margin: 30px 0 20px;
}

.price-label {
    font-size: 16px;
    color: #666;
    margin-right: 10px;
}

.price-amount {
    font-size: 32px;
    font-weight: 600;
    color: #2a2a2a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-note {
    max-width: 700px;
    margin: 80px auto 0;
    text-align: center;
    padding: 40px;
    background-color: #f9f9f9;
}

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

.service-note p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #4a4a4a;
}

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

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

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info-block > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #3a3a3a;
}

.contact-details {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-item {
    flex: 1;
    min-width: 250px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2a2a2a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.contact-note {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    font-style: italic;
}

.contact-visual {
    width: 100%;
    margin: 40px 0;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #f0f0f0;
}

.contact-approach {
    margin: 60px 0;
}

.contact-approach h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-approach > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #3a3a3a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2a2a2a;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.contact-faq {
    margin: 60px 0;
}

.contact-faq h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f9f9f9;
    border-left: 3px solid #2a2a2a;
}

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

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

.final-cta {
    text-align: center;
    padding: 50px 40px;
    background-color: #2a2a2a;
    color: #fff;
}

.final-cta h3 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 400;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.thanks-container {
    padding: 80px 20px;
    min-height: 70vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #2a2a2a;
    color: #fff;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

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

.thanks-message {
    font-size: 19px;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.thanks-details {
    margin: 30px 0;
}

.selected-service {
    font-size: 18px;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 3px solid #2a2a2a;
}

.thanks-next-steps {
    text-align: left;
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f9f9;
}

.thanks-next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-next-steps ul {
    margin-left: 20px;
}

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

.thanks-image {
    margin: 40px 0;
}

.thanks-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #f0f0f0;
}

.thanks-quote {
    font-size: 22px;
    font-style: italic;
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 4px solid #2a2a2a;
    color: #2a2a2a;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.legal-page {
    background-color: #fff;
}

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

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

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

.legal-section h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2a2a2a;
    font-weight: 500;
}

.legal-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #3a3a3a;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

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

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .stats-section {
        flex-direction: column;
    }

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

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

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

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}