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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #2c3e50;
    --light-bg: #ecf0f1;
    --white: #ffffff;
    --gray: #95a5a6;
    --dark-gray: #34495e;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

.floating-nav {
    position: fixed;
    top: 2rem;
    right: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-disclosure {
    font-size: 0.75rem;
    color: var(--gray);
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--gray);
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 600px;
    margin-left: 5rem;
    z-index: 2;
}

.hero-label {
    display: inline-block;
    background: var(--light-bg);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-content-offset h1 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content-offset p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.hero-image-irregular {
    position: absolute;
    right: -10%;
    top: 20%;
    width: 55%;
    height: 60%;
    transform: rotate(-5deg);
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: var(--light-bg);
}

.hero-image-irregular img {
    width: 100%;
    height: 100%;
}

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.cta-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--secondary-color);
    padding: 1rem 2.5rem;
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.cta-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.intro-offset {
    display: flex;
    padding: 6rem 5rem;
    gap: 4rem;
    align-items: center;
}

.intro-block-left {
    flex: 1;
    max-width: 500px;
}

.intro-block-left h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-visual-right {
    flex: 1;
    position: relative;
}

.intro-visual-right img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background-color: var(--light-bg);
}

.floating-stat {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    text-align: center;
    margin-top: 0.5rem;
    max-width: 200px;
}

.citation-link {
    color: var(--secondary-color);
    font-weight: 600;
}

.insight-overlap {
    position: relative;
    min-height: 600px;
    margin: 6rem 0;
    display: flex;
    align-items: center;
}

.insight-image-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
    background-color: var(--light-bg);
}

.insight-image-bg img {
    width: 100%;
    height: 100%;
}

.insight-content-card {
    position: relative;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    margin-left: auto;
    margin-right: 5rem;
    z-index: 2;
}

.insight-list {
    list-style: none;
    margin-top: 1.5rem;
}

.insight-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.services-staggered {
    padding: 6rem 5rem;
    background: var(--light-bg);
}

.services-title {
    text-align: center;
    margin-bottom: 1rem;
}

.services-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 4rem;
}

.services-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-offset-1 {
    margin-left: 0;
}

.service-offset-2 {
    margin-left: 5rem;
}

.service-offset-3 {
    margin-left: 2rem;
}

.service-offset-4 {
    margin-left: 7rem;
}

.service-offset-5 {
    margin-left: 3rem;
}

.service-image {
    width: 40%;
    overflow: hidden;
    background-color: var(--light-bg);
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-content {
    flex: 1;
    padding: 2.5rem;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-duration {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--gray);
    margin: 1rem 0;
    padding: 0.4rem 1rem;
    background: var(--light-bg);
    border-radius: 20px;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.service-select {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.service-select:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.testimonials-scattered {
    padding: 6rem 5rem;
    background: var(--white);
}

.testimonials-scattered h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.testimonial-pos-1 {
    margin-left: 0;
    max-width: 70%;
}

.testimonial-pos-2 {
    margin-left: 20%;
    max-width: 65%;
}

.testimonial-pos-3 {
    margin-left: 10%;
    max-width: 75%;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-gray);
}

.form-section-diagonal {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.form-container-asymmetric {
    background: var(--white);
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    margin-left: 5rem;
    z-index: 2;
    position: relative;
}

.form-image-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
    background-color: var(--light-bg);
}

.form-image-bg img {
    width: 100%;
    height: 100%;
}

.consultation-form {
    margin-top: 2rem;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-consent {
    margin: 1.5rem 0;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.form-consent input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.form-submit {
    width: 100%;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.cta-floating {
    background: var(--primary-color);
    color: var(--white);
    padding: 6rem 5rem;
    position: relative;
    overflow: hidden;
}

.cta-content-overlap {
    max-width: 700px;
    margin-left: 5rem;
    text-align: left;
}

.cta-content-overlap h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content-overlap p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-asymmetric {
    background: var(--dark-gray);
    color: var(--white);
    padding: 4rem 5rem 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-col-brand {
    max-width: 300px;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

.footer-col a:hover {
    color: var(--white);
}

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-references {
    margin-bottom: 2rem;
    font-size: 0.85rem;
}

.footer-references h4 {
    margin-bottom: 1rem;
}

.footer-references p {
    margin-bottom: 0.5rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

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

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--secondary-color);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--primary-color);
}

.cookie-reject {
    background: var(--light-bg);
    color: var(--text-color);
}

.cookie-reject:hover {
    background: var(--gray);
    color: var(--white);
}

.about-hero-offset {
    display: flex;
    min-height: 80vh;
    align-items: center;
    padding: 8rem 5rem 4rem;
    gap: 4rem;
}

.about-hero-content {
    flex: 1;
}

.about-hero-content h1 {
    margin-bottom: 1.5rem;
}

.about-lead {
    font-size: 1.3rem;
    color: var(--dark-gray);
}

.about-hero-visual {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background-color: var(--light-bg);
}

.about-hero-visual img {
    width: 100%;
    height: 100%;
}

.about-story-irregular {
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-block {
    max-width: 600px;
}

.story-block-offset {
    max-width: 700px;
    margin-left: auto;
}

.story-image-float {
    width: 50%;
    margin: 2rem auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--light-bg);
}

.story-image-float img {
    width: 100%;
}

.team-asymmetric {
    padding: 6rem 5rem;
    background: var(--light-bg);
}

.team-asymmetric h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.team-layout-scattered {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member {
    display: flex;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.team-pos-1 {
    margin-left: 0;
}

.team-pos-2 {
    margin-left: 8rem;
}

.team-pos-3 {
    margin-left: 3rem;
}

.team-pos-4 {
    margin-left: 10rem;
}

.team-image {
    width: 180px;
    height: 180px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
    background-color: var(--light-bg);
}

.team-image img {
    width: 100%;
    height: 100%;
}

.team-info {
    flex: 1;
}

.team-info h3 {
    margin-bottom: 0.5rem;
}

.team-role {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.values-diagonal {
    padding: 6rem 5rem;
    background: var(--white);
}

.values-diagonal h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--secondary-color);
}

.value-card:nth-child(1) {
    margin-left: 0;
}

.value-card:nth-child(2) {
    margin-left: 5rem;
}

.value-card:nth-child(3) {
    margin-left: 2rem;
}

.value-card:nth-child(4) {
    margin-left: 7rem;
}

.cta-about {
    background: var(--secondary-color);
    padding: 5rem;
    text-align: center;
}

.cta-about .cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-about .cta-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-hero {
    padding: 8rem 5rem 4rem;
    text-align: center;
    background: var(--light-bg);
}

.services-hero h1 {
    margin-bottom: 1rem;
}

.services-hero-text {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.services-full {
    padding: 4rem 5rem;
}

.service-detail {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.service-layout-1 {
    flex-direction: row;
}

.service-layout-2 {
    flex-direction: row-reverse;
}

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

.service-intro {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

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

.service-includes li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
}

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

.service-detail-image {
    width: 350px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
    background-color: var(--light-bg);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
}

.service-pricing-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-price-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 600;
}

.service-price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.services-comparison {
    padding: 4rem 5rem;
    background: var(--light-bg);
}

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

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

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

.comparison-table thead {
    background: var(--secondary-color);
    color: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    text-align: left;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--light-bg);
}

.comparison-table tbody tr:hover {
    background: var(--light-bg);
}

.services-cta {
    padding: 5rem;
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
}

.services-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-hero {
    padding: 8rem 5rem 4rem;
    text-align: center;
    background: var(--light-bg);
}

.contact-hero h1 {
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.contact-content-asymmetric {
    display: flex;
    padding: 6rem 5rem;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-detail {
    margin-bottom: 3rem;
}

.contact-detail h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: var(--light-bg);
}

.contact-visual img {
    width: 100%;
    height: 100%;
}

.contact-cta-section {
    padding: 5rem;
    text-align: center;
    background: var(--secondary-color);
    color: var(--white);
}

.contact-cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.thanks-hero {
    display: flex;
    min-height: 80vh;
    align-items: center;
    padding: 8rem 5rem 4rem;
    gap: 4rem;
}

.thanks-content {
    flex: 1;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.thanks-lead {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.thanks-service-info {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.thanks-next-steps h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-steps {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 3rem;
}

.thanks-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 4rem;
    margin-bottom: 2rem;
}

.thanks-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

.thanks-visual {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: var(--light-bg);
}

.thanks-visual img {
    width: 100%;
}

.thanks-resources {
    padding: 4rem 5rem;
    background: var(--light-bg);
    text-align: center;
}

.thanks-resources h2 {
    margin-bottom: 1rem;
}

.thanks-resources p {
    margin-bottom: 2rem;
    color: var(--gray);
}

.thanks-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.thanks-link-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    flex: 1;
    max-width: 350px;
    transition: var(--transition);
}

.thanks-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thanks-link-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    line-height: 1.8;
}

.legal-content h1 {
    margin-bottom: 1rem;
}

.legal-updated {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        text-align: center;
    }

    .hero-content-offset {
        margin-left: 0;
    }

    .hero-image-irregular {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        transform: none;
        margin-top: 3rem;
    }

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

    .insight-overlap {
        flex-direction: column;
        min-height: auto;
    }

    .insight-image-bg {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .insight-content-card {
        margin-left: 2rem;
        margin-right: 2rem;
        margin-top: -3rem;
    }

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

    .service-image {
        width: 100%;
        height: 250px;
    }

    .service-offset-1,
    .service-offset-2,
    .service-offset-3,
    .service-offset-4,
    .service-offset-5 {
        margin-left: 0;
    }

    .form-section-diagonal {
        flex-direction: column;
        min-height: auto;
    }

    .form-container-asymmetric {
        margin-left: 2rem;
        margin-right: 2rem;
    }

    .form-image-bg {
        position: relative;
        width: 100%;
        height: 300px;
        border-radius: var(--border-radius);
    }

    .team-member {
        flex-direction: column;
        text-align: center;
    }

    .team-image {
        width: 100%;
        height: 250px;
    }

    .team-pos-1,
    .team-pos-2,
    .team-pos-3,
    .team-pos-4 {
        margin-left: 0;
    }

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

    .service-detail-image {
        width: 100%;
    }

    .about-hero-offset {
        flex-direction: column;
    }

    .contact-content-asymmetric {
        flex-direction: column;
    }

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

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

    h2 {
        font-size: 2rem;
    }

    .floating-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 2rem;
    }

    .hero-asymmetric,
    .intro-offset,
    .services-staggered,
    .testimonials-scattered,
    .cta-floating,
    .footer-asymmetric,
    .about-story-irregular,
    .team-asymmetric,
    .values-diagonal,
    .services-full,
    .contact-content-asymmetric,
    .thanks-resources {
        padding: 4rem 2rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

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

    .testimonial-pos-1,
    .testimonial-pos-2,
    .testimonial-pos-3 {
        margin-left: 0;
        max-width: 100%;
    }

    .value-card:nth-child(1),
    .value-card:nth-child(2),
    .value-card:nth-child(3),
    .value-card:nth-child(4) {
        margin-left: 0;
    }
}