* {
    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.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.btn-cookie {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background-color: #3498db;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

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

.nav-asymmetric {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    padding: 1rem 2rem;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3498db;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #3498db;
}

.nav-disclosure {
    background-color: #fff3cd;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.ad-label {
    font-size: 0.8rem;
    color: #856404;
    font-weight: 600;
}

.hero-asymmetric {
    display: flex;
    min-height: 75vh;
    position: relative;
    overflow: hidden;
}

.hero-offset-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 2rem 4rem 6rem;
    background-color: #f8f9fa;
    z-index: 2;
}

.hero-text-block {
    max-width: 580px;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.hero-image-stack {
    flex: 1.2;
    position: relative;
    overflow: hidden;
    background-color: #e0e7ef;
}

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

.intro-offset {
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-narrow {
    flex: 1;
    padding-left: 3rem;
}

.lead-text {
    font-size: 2rem;
    line-height: 1.4;
    color: #2c3e50;
    font-weight: 300;
}

.intro-wide-image {
    flex: 1.5;
    background-color: #e8ecef;
}

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

.services-irregular {
    padding: 6rem 2rem;
    background-color: #fafbfc;
}

.section-header-offset {
    max-width: 700px;
    margin: 0 0 4rem 8rem;
}

.section-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-offset p {
    font-size: 1.2rem;
    color: #4a5568;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card.card-large {
    max-width: 900px;
}

.service-card.card-offset-right {
    margin-left: auto;
    max-width: 850px;
}

.service-card.card-offset-left {
    margin-right: auto;
    max-width: 850px;
}

.service-card.card-wide {
    max-width: 1100px;
    margin: 0 auto;
}

.service-image {
    flex: 1;
    min-width: 350px;
    background-color: #e0e7ef;
}

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

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

.service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.btn-service-select {
    padding: 0.85rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-select:hover {
    background-color: #1a252f;
    transform: translateX(5px);
}

.testimonial-overlap {
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.testimonial-content {
    flex: 1;
    padding: 3rem;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 8px;
    z-index: 2;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-content cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
}

.testimonial-image {
    flex: 1.3;
    height: 450px;
    background-color: #e8ecef;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.form-section-offset {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 0 0 auto;
    padding: 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.form-intro {
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.1rem;
    color: #4a5568;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    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: #3498db;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.insight-section {
    padding: 6rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.insight-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem;
}

.insight-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.insight-wrapper p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #808080;
}

.page-hero-offset {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-left {
    flex: 1;
    padding-left: 3rem;
}

.hero-content-left h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 1.2rem;
    color: #4a5568;
}

.hero-image-right {
    flex: 1;
    height: 500px;
    background-color: #e8ecef;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.story-section-irregular {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.story-block {
    max-width: 700px;
    margin-bottom: 4rem;
}

.story-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1rem;
}

.story-image-overlay {
    max-width: 900px;
    margin: 3rem 0 3rem auto;
    height: 450px;
    background-color: #e8ecef;
}

.story-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.story-block-offset {
    max-width: 750px;
    margin: 4rem 0 0 auto;
    padding-right: 3rem;
}

.story-block-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-block-offset p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1rem;
}

.approach-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.approach-header {
    max-width: 1400px;
    margin: 0 auto 4rem;
    text-align: center;
}

.approach-header h2 {
    font-size: 3rem;
    color: #1a1a1a;
}

.approach-cards-staggered {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.approach-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    transition: transform 0.3s ease;
}

.approach-card:hover {
    transform: translateX(10px);
}

.approach-card.offset-right {
    margin-left: auto;
}

.approach-card.offset-left {
    margin-right: auto;
}

.approach-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.approach-card p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.team-highlight {
    padding: 6rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.team-intro-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.team-intro-offset p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.values-irregular {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-block {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
}

.value-block.large {
    flex: 2;
}

.value-block.medium {
    flex: 1.5;
}

.value-block.small-offset {
    flex: 1;
    margin-top: 3rem;
}

.value-block.large-offset {
    flex: 2;
    margin-top: -2rem;
}

.value-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-block p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.services-hero {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.services-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.service-detail-block.offset-left {
    margin-right: auto;
    max-width: 1200px;
}

.service-detail-block.offset-right {
    margin-left: auto;
    max-width: 1200px;
    flex-direction: row-reverse;
}

.service-detail-block.full-width {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    text-align: center;
}

.service-detail-image {
    flex: 1;
    height: 450px;
    background-color: #e8ecef;
}

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

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

.service-detail-content.centered {
    max-width: 900px;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.service-detail-content ul {
    list-style-position: inside;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

.service-pricing {
    font-size: 1.15rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-pricing strong {
    font-size: 1.5rem;
    font-weight: 700;
}

.services-cta-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.cta-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.cta-content-centered p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.contact-hero-offset {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.contact-intro {
    max-width: 900px;
    margin: 0 0 0 auto;
    padding-right: 3rem;
}

.contact-intro h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-intro p {
    font-size: 1.2rem;
    color: #4a5568;
}

.contact-details-irregular {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-block {
    max-width: 700px;
    margin-bottom: 4rem;
}

.contact-info-block.large-offset {
    margin-left: 6rem;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-map-placeholder {
    max-width: 1000px;
    margin: 0 0 4rem auto;
    height: 400px;
    background-color: #e8ecef;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.contact-additional-info {
    max-width: 850px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-additional-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-additional-info p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-additional-info ul {
    list-style-position: inside;
    margin-top: 1.5rem;
}

.contact-additional-info ul li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 0.7rem;
    padding-left: 0.5rem;
}

.contact-approach-section {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.approach-content-centered {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
}

.process-steps-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.process-step {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 260px;
    max-width: 350px;
}

.process-step.offset {
    margin-top: 3rem;
}

.step-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.service-confirmation {
    padding: 1.5rem;
    background-color: #e7f5ff;
    border-radius: 6px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-next-steps ul {
    list-style-position: inside;
}

.thanks-next-steps ul li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    line-height: 1.7;
}

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

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
    transform: translateY(-3px);
}

.legal-page {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.last-updated {
    font-size: 0.95rem;
    color: #808080;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style-position: inside;
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content ul li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2980b9;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background-color: #f8f9fa;
}

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

.cookie-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #4a5568;
}

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

    .hero-offset-content {
        padding: 3rem 2rem;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

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

    .services-grid-asymmetric {
        gap: 2rem;
    }

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

    .service-card.card-offset-right,
    .service-card.card-offset-left {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

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

    .testimonial-overlap {
        flex-direction: column;
    }

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

    .story-image-overlay {
        margin: 2rem 0;
    }

    .service-detail-block,
    .service-detail-block.offset-right {
        flex-direction: column;
    }

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

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

    .nav-link {
        font-size: 0.9rem;
    }

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

    .hero-text-block p {
        font-size: 1.05rem;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .section-header-offset h2 {
        font-size: 2rem;
    }

    .form-container-asymmetric {
        padding: 2rem;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }
}