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

:root {
    --color-primary: #2c3e50;
    --color-secondary: #1abc9c;
    --color-accent: #e74c3c;
    --color-text: #2c3e50;
    --color-text-light: #7f8c8d;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-border: #ecf0f1;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --max-width: 1200px;
    --max-width-narrow: 800px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-primary);
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-primary);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1.2rem;
}

ul, ol {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 280px;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: #fff;
}

.btn-primary:hover {
    background-color: #16a085;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

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

.btn-cta {
    background-color: var(--color-accent);
    color: #fff;
    padding: 1rem 2rem;
}

.btn-cta:hover {
    background-color: #c0392b;
    color: #fff;
}

.btn-cta-large {
    background-color: var(--color-accent);
    color: #fff;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-cta-large:hover {
    background-color: #c0392b;
    color: #fff;
}

.btn-submit {
    background-color: var(--color-secondary);
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

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

.site-header {
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
}

.logo a:hover {
    color: var(--color-secondary);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--color-text-light);
    background-color: var(--color-bg-alt);
    padding: 0.35rem 0.75rem;
    border-radius: 3px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-secondary);
    border-bottom-color: var(--color-secondary);
}

.editorial-main {
    position: relative;
}

.hero-editorial {
    position: relative;
}

.hero-image-container {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
}

.hero-overlay h1 {
    color: #fff;
    max-width: var(--max-width-narrow);
    font-size: 2.6rem;
}

.hero-lead {
    font-size: 1.25rem;
    max-width: 600px;
    opacity: 0.9;
    margin-bottom: 0;
}

.story-content {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 4rem 2rem;
}

.story-intro {
    margin-bottom: 4rem;
}

.drop-cap::first-letter {
    float: left;
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 0.8;
    padding-right: 0.75rem;
    color: var(--color-secondary);
}

.insight-block {
    margin: 4rem -4rem;
}

.insight-card {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.insight-card.right-aligned {
    flex-direction: row-reverse;
}

.insight-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.insight-text {
    flex: 1;
}

.quote-section {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.quote-section blockquote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--color-primary);
    text-align: center;
}

.quote-section cite {
    display: block;
    margin-top: 1.5rem;
    font-family: var(--font-main);
    font-size: 1rem;
    font-style: normal;
    color: var(--color-text-light);
}

.story-section {
    margin: 4rem 0;
}

.pillars-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

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

.pillar-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.pillar-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.testimonial-inline {
    margin: 4rem 0;
    padding: 3rem;
    background-color: var(--color-bg-alt);
    border-radius: 12px;
    border-left: 4px solid var(--color-secondary);
}

.testimonial-inline.alt {
    border-left-color: var(--color-accent);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--color-primary);
}

.author-location {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.cta-inline {
    margin: 4rem 0;
}

.cta-box {
    background-color: var(--color-primary);
    color: #fff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.cta-box h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-box p {
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.tips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.tip-card {
    flex: 1;
    min-width: 200px;
    padding: 2rem;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
    position: relative;
}

.tip-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-border);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.tip-card h4 {
    color: var(--color-secondary);
}

.tip-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.pricing-reveal {
    margin: 5rem 0;
    padding: 4rem 0;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.pricing-intro {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--color-text-light);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem;
    background-color: var(--color-bg-alt);
    border-radius: 12px;
    text-align: left;
    position: relative;
}

.service-card.featured {
    background-color: var(--color-primary);
    color: #fff;
}

.service-card.featured h3 {
    color: #fff;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-accent);
    color: #fff;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-card .price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.service-card.featured .price {
    color: var(--color-secondary);
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.service-card.featured .price-note {
    color: rgba(255, 255, 255, 0.7);
}

.form-section {
    margin: 5rem 0;
    padding: 4rem 3rem;
    background-color: var(--color-bg-alt);
    border-radius: 16px;
}

.form-section h2 {
    text-align: center;
}

.form-section > p {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    color: var(--color-text-light);
}

.main-form,
.service-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.main-form .btn-submit,
.service-form .btn-submit {
    width: 100%;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 50;
}

.sticky-btn {
    display: inline-block;
    background-color: var(--color-accent);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.sticky-btn:hover {
    background-color: #c0392b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.page-hero {
    position: relative;
    height: 40vh;
    min-height: 350px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

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

.page-hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: #fff;
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.9));
}

.page-hero-content h1 {
    color: #fff;
    max-width: 700px;
}

.page-hero-content p {
    max-width: 600px;
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.about-content,
.page-content article {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem;
}

.story-block {
    max-width: var(--max-width-narrow);
    margin: 0 auto 4rem;
}

.values-section {
    margin-bottom: 5rem;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.value-icon {
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.value-icon svg {
    width: 48px;
    height: 48px;
}

.team-section {
    background-color: var(--color-bg-alt);
    padding: 4rem;
    border-radius: 16px;
    margin-bottom: 5rem;
    text-align: center;
}

.team-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.team-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.approach-section {
    margin-bottom: 5rem;
}

.approach-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.approach-text {
    flex: 1;
}

.cta-section.centered {
    text-align: center;
    padding: 4rem;
    background-color: var(--color-primary);
    border-radius: 16px;
    color: #fff;
}

.cta-section.centered h2 {
    color: #fff;
}

.cta-section.centered p {
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.services-intro {
    padding: 4rem 2rem;
    text-align: center;
}

.intro-content {
    max-width: 700px;
    margin: 0 auto;
}

.intro-content p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.services-detailed {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.service-detail-card {
    margin-bottom: 4rem;
    padding: 3rem;
    background-color: var(--color-bg-alt);
    border-radius: 16px;
}

.service-detail-card.highlight {
    background-color: var(--color-primary);
    color: #fff;
}

.service-detail-card.highlight h2,
.service-detail-card.highlight h3 {
    color: #fff;
}

.service-detail-card.highlight .service-tag {
    background-color: var(--color-secondary);
}

.service-detail-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-detail-text {
    flex: 1;
}

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-tag {
    display: inline-block;
    background-color: var(--color-secondary);
    color: #fff;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
}

.service-detail-card.highlight .service-features li::before {
    color: var(--color-secondary);
}

.service-pricing {
    margin-top: 2rem;
}

.price-main {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.price-period {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.service-detail-card.highlight .price-period {
    color: rgba(255, 255, 255, 0.7);
}

.price-savings {
    display: inline-block;
    margin-top: 0.5rem;
    background-color: var(--color-accent);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.services-comparison {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: var(--color-bg-alt);
}

.services-comparison h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-bg);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 600;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table tr.price-row {
    background-color: var(--color-bg-alt);
    font-weight: 700;
}

.comparison-table tr.price-row td {
    color: var(--color-secondary);
}

.services-form-section {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.services-form-section h2 {
    margin-bottom: 1rem;
}

.services-form-section > p {
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.service-form {
    text-align: left;
}

.contact-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-info,
.contact-faq {
    flex: 1;
}

.info-block {
    margin-bottom: 3rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.info-item p {
    margin-bottom: 0;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--color-text-light);
}

.contact-cta {
    padding: 5rem 2rem;
    background-color: var(--color-bg-alt);
    text-align: center;
}

.contact-cta h2 {
    margin-bottom: 1rem;
}

.contact-cta p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-container {
    max-width: 600px;
    text-align: center;
}

.thanks-icon {
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.thanks-icon svg {
    width: 80px;
    height: 80px;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.selected-service {
    background-color: var(--color-bg-alt);
    padding: 1rem 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-next-steps {
    text-align: left;
    background-color: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.thanks-next-steps ol {
    margin-bottom: 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 4rem 2rem;
}

.legal-content {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.legal-content h1 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.last-updated {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.4rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.gdpr-table th,
.gdpr-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--color-border);
}

.gdpr-table th {
    background-color: var(--color-bg-alt);
    font-weight: 600;
}

.rights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.right-item {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
}

.right-item h3 {
    color: var(--color-secondary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.right-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.site-footer {
    background-color: var(--color-primary);
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 0;
}

.footer-links,
.footer-contact,
.footer-references {
    flex: 1;
    min-width: 180px;
}

.footer-content h4 {
    color: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.references-list {
    font-size: 0.85rem;
    opacity: 0.8;
    padding-left: 1.25rem;
}

.references-list a {
    color: rgba(255, 255, 255, 0.8);
}

.references-list a:hover {
    color: var(--color-secondary);
}

.footer-disclaimer {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 0;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-overlay {
        padding: 2rem;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .insight-block {
        margin: 3rem 0;
    }

    .insight-card,
    .insight-card.right-aligned {
        flex-direction: column;
    }

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

    .service-detail-content,
    .service-detail-card.reverse .service-detail-content {
        flex-direction: column;
    }

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

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .sticky-cta {
        display: none;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .hero-image-container {
        height: 50vh;
        min-height: 400px;
    }

    .story-content {
        padding: 2rem 1.5rem;
    }

    .pillars-container,
    .tips-grid {
        flex-direction: column;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 100%;
    }

    .team-stats {
        gap: 2rem;
    }

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