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

:root {
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #0f4c75;
    --color-highlight: #3282b8;
    --color-text: #2d2d2d;
    --color-text-light: #666;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-border: #e0e0e0;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}

.header-main {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
    padding: 1rem 0;
}

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

.brand-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--color-highlight);
}

.ad-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    background: var(--color-bg-alt);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.cookie-banner.active {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--color-highlight);
    color: white;
}

.btn-accept:hover {
    background: var(--color-accent);
}

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

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

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-bg-alt);
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: var(--spacing-xl) var(--spacing-md);
    margin-left: 8%;
}

.hero-text-block h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-hero:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.hero-image-diagonal {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-image-diagonal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--color-bg-alt);
}

.intro-story {
    padding: var(--spacing-xl) var(--spacing-md);
    background: white;
}

.story-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.story-left {
    flex: 1.2;
}

.story-left h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
    line-height: 1.2;
}

.story-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.story-right {
    flex: 1;
}

.story-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--color-bg-alt);
}

.insight-block {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--color-primary);
    color: white;
    position: relative;
}

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

.insight-content-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.insight-content-narrow p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.insight-content-narrow a {
    color: var(--color-highlight);
    text-decoration: none;
}

.product-reveal {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--color-bg);
}

.reveal-header {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
}

.reveal-header h2 {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.reveal-header p {
    font-size: 1.2rem;
    color: var(--color-text-light);
}

.product-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.product-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.card-large {
    flex: 1 1 calc(60% - 1rem);
}

.card-offset {
    flex: 1 1 calc(40% - 1rem);
    margin-top: 3rem;
}

.card-elevated {
    flex: 1 1 calc(45% - 1rem);
    margin-top: -2rem;
}

.card-wide {
    flex: 1 1 calc(55% - 1rem);
}

.card-compact {
    flex: 1 1 calc(50% - 1rem);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--color-bg-alt);
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.product-info p {
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-highlight);
    margin: 1.5rem 0;
}

.btn-select {
    width: 100%;
    padding: 1rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: var(--color-secondary);
}

.testimonials-scattered {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--color-bg-alt);
}

.testimonial-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1 1 300px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--color-highlight);
}

.item-1 {
    margin-top: 0;
}

.item-2 {
    margin-top: 3rem;
}

.item-3 {
    margin-top: 1.5rem;
}

.testimonial-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--color-text);
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-text-light);
    font-style: normal;
}

.form-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: white;
}

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

.form-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.form-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.contact-form {
    background: var(--color-bg-alt);
    padding: 3rem;
    border-radius: 8px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--color-secondary);
}

.disclaimer-section {
    padding: var(--spacing-md) var(--spacing-md);
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}

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

.disclaimer-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    text-align: center;
}

.footer-main {
    background: var(--color-primary);
    color: white;
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1 1 200px;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.page-hero-about,
.services-hero,
.contact-hero {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--color-bg-alt);
    text-align: center;
}

.hero-text-center h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.hero-text-center p,
.services-hero-content p,
.contact-hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-light);
}

.about-story {
    padding: var(--spacing-xl) var(--spacing-md);
}

.about-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image-left {
    flex: 1;
}

.about-image-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--color-bg-alt);
}

.about-text-right {
    flex: 1.2;
    padding-left: 2rem;
}

.about-text-right h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.about-text-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mission-offset {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--color-bg-alt);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto 0 15%;
}

.mission-content h2 {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.mission-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-section {
    padding: var(--spacing-xl) var(--spacing-md);
}

.values-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.values-header h2 {
    font-size: 3rem;
    color: var(--color-primary);
}

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

.value-card {
    flex: 1 1 300px;
    padding: 2.5rem;
    background: var(--color-bg-alt);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.value-card p {
    line-height: 1.7;
    color: var(--color-text);
}

.process-asymmetric {
    padding: var(--spacing-xl) var(--spacing-md);
    background: white;
}

.process-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.process-text {
    flex: 1.2;
}

.process-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.process-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.process-list {
    list-style: none;
    padding-left: 0;
}

.process-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.05rem;
}

.process-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-highlight);
    font-weight: bold;
    font-size: 1.2rem;
}

.process-image {
    flex: 1;
}

.process-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--color-bg-alt);
}

.team-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--color-bg-alt);
}

.team-intro {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.team-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.team-intro p {
    font-size: 1.2rem;
    color: var(--color-text-light);
}

.team-image-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.team-image-wide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--color-bg);
}

.cta-about,
.cta-services {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--color-primary);
    color: white;
    text-align: center;
}

.cta-content,
.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2,
.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.btn-cta-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: white;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.services-main {
    padding: var(--spacing-xl) var(--spacing-md);
}

.services-intro {
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.services-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text);
}

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

.service-item {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.service-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.item-wide {
    flex: 1 1 100%;
    flex-direction: row;
}

.item-compact {
    flex: 1 1 calc(50% - 1.5rem);
}

.item-offset {
    flex: 1 1 calc(50% - 1.5rem);
    margin-top: 2rem;
}

.item-elevated {
    flex: 1 1 calc(50% - 1.5rem);
    margin-top: -1rem;
}

.item-centered {
    flex: 1 1 calc(50% - 1.5rem);
}

.item-full {
    flex: 1 1 100%;
}

.service-visual {
    overflow: hidden;
}

.item-wide .service-visual {
    flex: 0 0 45%;
}

.service-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: var(--color-bg-alt);
    transition: transform 0.3s;
}

.item-wide .service-visual img {
    height: 100%;
}

.service-item:hover .service-visual img {
    transform: scale(1.05);
}

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

.service-details h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.service-details p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
}

.features-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-highlight);
    font-size: 1.5rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-highlight);
    margin: 1.5rem 0;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-service:hover {
    background: var(--color-secondary);
}

.materials-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--color-bg-alt);
}

.materials-content {
    max-width: 1400px;
    margin: 0 auto;
}

.materials-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
    text-align: center;
}

.materials-content > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text);
}

.materials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.material-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--color-highlight);
}

.material-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.material-card p {
    line-height: 1.6;
    color: var(--color-text);
}

.contact-main {
    padding: var(--spacing-xl) var(--spacing-md);
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.contact-details {
    margin-bottom: var(--spacing-md);
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.contact-item p {
    line-height: 1.7;
    color: var(--color-text);
}

.contact-note {
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note p {
    margin: 0;
    line-height: 1.6;
}

.contact-image-section {
    flex: 1;
}

.contact-image-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--color-bg-alt);
}

.contact-cta-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--color-bg-alt);
}

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

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

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

.thanks-section {
    padding: var(--spacing-xl) var(--spacing-md);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

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

.thanks-info {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.steps-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.steps-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.steps-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-highlight);
    font-weight: bold;
    font-size: 1.5rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
}

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

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

.legal-page {
    padding: var(--spacing-xl) var(--spacing-md);
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.legal-date {
    color: var(--color-text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-secondary);
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: var(--color-highlight);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

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

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

.references {
    list-style: none;
    padding-left: 0;
}

.references li {
    margin-bottom: 0.75rem;
}

@media (max-width: 1024px) {
    .hero-text-block h1 {
        font-size: 3rem;
    }

    .hero-image-diagonal {
        width: 50%;
    }

    .story-wrapper,
    .about-grid,
    .process-wrapper {
        flex-direction: column;
    }

    .product-grid-asymmetric {
        flex-direction: column;
    }

    .product-card {
        flex: 1 1 100%;
        margin-top: 0 !important;
    }

    .testimonial-item {
        margin-top: 0 !important;
    }

    .services-grid-varied .service-item {
        flex: 1 1 100%;
        margin-top: 0 !important;
        flex-direction: column;
    }

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

    .item-wide .service-visual {
        flex: initial;
    }

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .hero-asymmetric {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-image-diagonal {
        position: relative;
        width: 100%;
        clip-path: none;
        margin-top: 2rem;
    }

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

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

    .values-cards,
    .materials-grid {
        flex-direction: column;
    }

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