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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #1a252f;
    --border-color: #ddd;
    --success-color: #2ecc71;
    --spacing-xs: 0.5rem;
    --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;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 37, 47, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

.btn-cookie.accept:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

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

.btn-cookie.reject:hover {
    background: white;
    color: var(--dark-bg);
}

.nav-asymmetric {
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-section {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

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

.ad-disclosure {
    font-size: 0.7rem;
    color: #666;
    font-style: italic;
}

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

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

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

.hero-offset {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-lg) 2rem;
}

.hero-image-block {
    position: relative;
    width: 85%;
    margin-left: auto;
    background: var(--light-bg);
}

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

.hero-overlay {
    position: absolute;
    bottom: 3rem;
    left: -5rem;
    background: rgba(44, 62, 80, 0.95);
    padding: 3rem;
    max-width: 500px;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    line-height: 1.1;
    font-weight: 800;
}

.hero-text-offset {
    width: 60%;
    margin-top: -4rem;
    margin-left: 3rem;
    background: white;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.intro-large {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateX(5px);
}

.stacked-irregular {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: var(--spacing-xl) auto;
    padding: 0 2rem;
}

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

.content-block-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-block-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.image-block-overlap {
    flex: 1;
    position: relative;
    margin-top: -3rem;
    background: var(--light-bg);
}

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

.benefits-asymmetric {
    max-width: 1400px;
    margin: var(--spacing-xl) auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.benefit-card {
    width: calc(50% - 1.5rem);
    background: white;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.benefit-card.offset-1 {
    margin-top: 2rem;
}

.benefit-card.offset-2 {
    margin-top: -2rem;
}

.benefit-card.offset-3 {
    margin-top: 4rem;
}

.benefit-icon {
    background: var(--light-bg);
    height: 250px;
    overflow: hidden;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.benefit-card p {
    margin: 0 1.5rem 1.5rem;
    line-height: 1.7;
}

.benefit-card ul {
    margin: 0 1.5rem 1.5rem 3rem;
    list-style: disc;
}

.benefit-card li {
    margin-bottom: 0.5rem;
}

.price-tag {
    background: var(--accent-color);
    color: white;
    padding: 1rem 1.5rem;
    margin: 0 1.5rem 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.btn-select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonial-irregular {
    background: var(--light-bg);
    padding: var(--spacing-xl) 2rem;
    margin: var(--spacing-xl) 0;
}

.quote-block {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem 3rem;
    background: white;
    border-left: 5px solid var(--accent-color);
}

.quote-block.offset {
    margin-left: auto;
    margin-right: 5rem;
    border-left: none;
    border-right: 5px solid var(--secondary-color);
}

.quote-block blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.quote-block cite {
    display: block;
    text-align: right;
    font-style: normal;
    color: #666;
    font-size: 0.95rem;
}

.approach-section {
    max-width: 1400px;
    margin: var(--spacing-xl) auto;
    padding: 0 2rem;
}

.section-heading-offset {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    margin-left: 15%;
    color: var(--primary-color);
}

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

.approach-step {
    flex: 1;
    padding: 2rem;
    background: white;
    border: 2px solid var(--border-color);
}

.approach-step.offset-down {
    margin-top: 4rem;
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

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

.approach-step p {
    line-height: 1.7;
}

.cta-section-offset {
    position: relative;
    height: 500px;
    margin: var(--spacing-xl) 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-bg);
}

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

.cta-content-overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: white;
    padding: 3rem 4rem;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

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

.cta-content-overlay p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.form-section-irregular {
    max-width: 800px;
    margin: var(--spacing-xl) auto var(--spacing-xl) 15%;
    padding: 0 2rem;
}

.form-container {
    background: var(--light-bg);
    padding: 3rem;
    border-left: 8px solid var(--accent-color);
}

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

.form-intro {
    margin-bottom: 2rem;
    color: #666;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 0;
    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: var(--accent-color);
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.science-section {
    max-width: 900px;
    margin: var(--spacing-xl) auto;
    padding: 3rem;
    background: #f0f8ff;
    border: 1px solid #b8daf0;
}

.science-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.science-section p {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.science-section a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.science-section a:hover {
    text-decoration: underline;
}

.references {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #b8daf0;
}

.references h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.references ol {
    margin-left: 1.5rem;
}

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

.disclaimer-section {
    max-width: 1200px;
    margin: var(--spacing-xl) auto;
    padding: 2rem;
    background: #fffbea;
    border-left: 6px solid #f39c12;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
}

.footer-asymmetric {
    background: var(--dark-bg);
    color: white;
    padding: var(--spacing-lg) 0 2rem;
    margin-top: var(--spacing-xl);
}

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

.footer-block {
    flex: 1;
}

.footer-block.offset {
    margin-top: 2rem;
}

.footer-block.offset-down {
    margin-top: 3rem;
}

.footer-block h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-block p {
    margin-bottom: 0.75rem;
    color: #bbb;
    line-height: 1.6;
}

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

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

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

.footer-block ul li a:hover {
    color: white;
}

.footer-note {
    font-size: 0.85rem;
    font-style: italic;
}

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

.about-hero-offset {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: var(--spacing-lg) auto;
    padding: 0 2rem;
}

.about-text-primary {
    flex: 1;
    padding-right: 2rem;
}

.about-text-primary h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.about-image-overlap {
    flex: 1;
    margin-top: 3rem;
    background: var(--light-bg);
}

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

.story-section {
    max-width: 900px;
    margin: var(--spacing-xl) auto;
    padding: 0 2rem;
}

.story-block {
    padding: 2rem 0;
}

.story-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-asymmetric {
    max-width: 1400px;
    margin: var(--spacing-xl) auto;
    padding: var(--spacing-lg) 2rem;
    background: var(--light-bg);
}

.section-heading-center {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.value-card {
    width: calc(50% - 1rem);
    background: white;
    padding: 2rem;
    border: 2px solid var(--border-color);
}

.value-card.offset-left {
    margin-left: 0;
}

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

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

.value-card p {
    line-height: 1.7;
}

.team-section-irregular {
    max-width: 900px;
    margin: var(--spacing-xl) auto;
    padding: 0 2rem;
}

.team-section-irregular h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.team-intro {
    font-size: 1.1rem;
    line-height: 1.8;
}

.philosophy-section {
    max-width: 1200px;
    margin: var(--spacing-xl) auto;
    padding: var(--spacing-lg);
    background: var(--dark-bg);
    color: white;
    margin-left: 10%;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.cta-about {
    max-width: 700px;
    margin: var(--spacing-xl) auto;
    padding: 3rem;
    text-align: center;
    background: var(--light-bg);
    border: 3px solid var(--accent-color);
}

.cta-about h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.services-hero {
    max-width: 1200px;
    margin: var(--spacing-lg) auto;
    padding: 0 2rem;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.services-intro {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-detailed {
    max-width: 1400px;
    margin: var(--spacing-xl) auto;
    padding: 0 2rem;
}

.service-item-irregular {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-item-irregular.offset-right {
    margin-left: 5%;
}

.service-item-irregular.offset-left {
    margin-right: 5%;
}

.service-image {
    flex: 0 0 400px;
    background: var(--light-bg);
}

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

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

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

.price-unit {
    font-size: 1.1rem;
    color: #666;
}

.packages-section {
    max-width: 1400px;
    margin: var(--spacing-xl) auto;
    padding: var(--spacing-lg) 2rem;
    background: var(--light-bg);
}

.packages-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.package-card {
    flex: 1;
    background: white;
    padding: 2rem;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

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

.package-card.highlight {
    border-color: var(--accent-color);
    border-width: 3px;
}

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

.package-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.package-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.package-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.form-section-services {
    max-width: 800px;
    margin: var(--spacing-xl) auto;
    padding: 0 2rem;
}

.contact-hero {
    max-width: 1200px;
    margin: var(--spacing-lg) auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-intro {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-content-asymmetric {
    max-width: 1400px;
    margin: var(--spacing-xl) auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

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

.contact-info-block.offset-left {
    margin-top: 3rem;
}

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

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

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

.info-item p {
    line-height: 1.7;
    color: #555;
}

.email-static {
    font-weight: 600;
    color: var(--text-color);
}

.email-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #888;
}

.contact-visual-block {
    flex: 1;
    background: var(--light-bg);
}

.contact-visual-block.offset-right {
    margin-top: -2rem;
}

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

.visual-caption {
    padding: 1rem;
    text-align: center;
    font-style: italic;
    color: #666;
}

.contact-note-section {
    max-width: 900px;
    margin: var(--spacing-xl) auto;
    padding: 3rem;
    background: var(--light-bg);
    border-left: 6px solid var(--accent-color);
}

.contact-note-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-note-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg) 2rem;
}

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

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

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

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.service-confirmation {
    background: var(--light-bg);
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
}

.service-selected {
    font-size: 1.1rem;
    color: var(--text-color);
}

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

.btn-primary {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

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

.next-steps {
    margin: 3rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.steps-list {
    margin-left: 2rem;
}

.steps-list li {
    padding: 0.75rem 0;
    line-height: 1.7;
    font-size: 1.05rem;
}

.thanks-note {
    background: #fffbea;
    padding: 1.5rem;
    margin-top: 3rem;
    border: 1px solid #f39c12;
    border-radius: 4px;
}

.thanks-note p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.legal-content {
    max-width: 900px;
    margin: var(--spacing-lg) auto;
    padding: 0 2rem var(--spacing-xl);
}

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

.legal-updated {
    color: #888;
    font-style: italic;
    margin-bottom: 3rem;
}

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

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

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.legal-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

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

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

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

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

.gdpr-table th {
    background: var(--light-bg);
    font-weight: 700;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-offset,
    .stacked-irregular,
    .about-hero-offset,
    .contact-content-asymmetric,
    .service-item-irregular {
        flex-direction: column;
    }

    .hero-image-block {
        width: 100%;
        margin-left: 0;
    }

    .hero-overlay {
        position: static;
        margin-top: 1rem;
    }

    .hero-text-offset {
        width: 100%;
        margin-top: 1rem;
        margin-left: 0;
    }

    .benefit-card,
    .value-card {
        width: 100%;
    }

    .approach-grid,
    .packages-grid,
    .thanks-actions {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .footer-block.offset,
    .footer-block.offset-down {
        margin-top: 0;
    }

    .service-image {
        flex: 0 0 auto;
        width: 100%;
    }
}