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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #ddd;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie, .btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.header-magazine {
    background-color: var(--bg-white);
    border-bottom: 2px solid var(--border-color);
}

.header-top {
    background-color: var(--bg-light);
    padding: 8px 0;
    text-align: center;
}

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

.header-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-magazine {
    display: flex;
    gap: 30px;
}

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

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

.nav-magazine a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-magazine a:hover::after {
    width: 100%;
}

.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-magazine {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.hero-content-left {
    flex: 1;
    max-width: 600px;
}

.hero-content-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-image-right {
    flex: 1;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.cta-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.intro-columns {
    display: flex;
    gap: 40px;
    padding: 60px 20px;
    align-items: flex-start;
}

.column-narrow {
    flex: 0.8;
}

.column-narrow h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.column-narrow p {
    font-size: 1.1rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.column-wide {
    flex: 1.2;
}

.column-wide img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 12px;
    object-fit: cover;
}

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

.manifesto-block {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 20px;
}

.manifesto-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.manifesto-inner h3 {
    font-size: 2.2rem;
    margin-bottom: 48px;
    text-align: center;
}

.pillars-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.pillar {
    flex: 1;
}

.pillar-number {
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.3;
    margin-bottom: 12px;
}

.pillar h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.pillar p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.services-magazine {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.section-header-offset {
    margin-left: 60px;
    margin-bottom: 50px;
}

.section-header-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.subheader {
    font-size: 1.2rem;
    color: #666;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-large {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-large:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-card-large img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.service-card-medium {
    flex: 1 1 calc(50% - 15px);
    display: flex;
    gap: 20px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-medium:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-card-medium img {
    width: 300px;
    height: 100%;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-card-small {
    flex: 1 1 calc(33.33% - 20px);
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.service-card-small h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-card-small p {
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.testimonial-offset {
    padding: 60px 20px;
    background-color: var(--bg-light);
    margin: 60px 0;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    margin-left: 120px;
}

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--primary-color);
    border-left: 5px solid var(--secondary-color);
    padding-left: 30px;
}

blockquote footer {
    font-size: 1rem;
    font-style: normal;
    margin-top: 16px;
    color: #666;
}

.form-section-inline {
    display: flex;
    gap: 60px;
    padding: 80px 20px;
    background-color: var(--bg-white);
    align-items: center;
}

.form-wrapper {
    flex: 1;
    max-width: 600px;
}

.form-wrapper h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.form-wrapper > p {
    margin-bottom: 32px;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    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: 14px 32px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.form-image {
    flex: 0.8;
}

.form-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background-color: var(--bg-light);
}

.why-us-asymmetric {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.why-us-asymmetric h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.features-offset {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.feature-block {
    flex: 1 1 300px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.feature-highlight {
    transform: translateY(-20px);
    background-color: var(--primary-color);
    color: white;
}

.feature-block h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.feature-highlight h4 {
    color: white;
}

.feature-block p {
    line-height: 1.6;
}

.cta-bottom-magazine {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: white;
}

.cta-content-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-content-centered p {
    font-size: 1.2rem;
    margin-bottom: 36px;
    opacity: 0.9;
}

.footer-magazine {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 20px 20px 20px;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.7;
}

.about-hero {
    padding: 100px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.story-section {
    display: flex;
    gap: 60px;
    padding: 80px 20px;
    align-items: center;
}

.story-narrow {
    flex: 1;
}

.story-narrow h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.story-narrow p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
    object-fit: cover;
    background-color: var(--bg-light);
}

.mission-block {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.mission-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.mission-columns {
    display: flex;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-col {
    flex: 1;
}

.mission-col p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.values-asymmetric {
    padding: 80px 20px;
}

.values-asymmetric h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.values-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-large {
    flex: 1 1 calc(60% - 15px);
}

.value-medium {
    flex: 1 1 calc(50% - 15px);
}

.value-small {
    flex: 1 1 calc(40% - 15px);
}

.value-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.team-intro {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.team-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.team-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

.approach-section {
    display: flex;
    gap: 60px;
    padding: 80px 20px;
    align-items: center;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
    object-fit: cover;
    background-color: var(--bg-light);
}

.impact-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: white;
}

.impact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.impact-stats {
    display: flex;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-about {
    padding: 80px 20px;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.services-header {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.services-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-full {
    display: flex;
    gap: 60px;
    padding: 80px 20px;
    align-items: center;
}

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

.service-detail-content h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0;
}

.feature-item {
    background-color: var(--bg-light);
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 0.95rem;
}

.price-large {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 24px 0;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-detail-split {
    display: flex;
    gap: 60px;
    padding: 80px 20px;
    background-color: var(--bg-light);
    align-items: center;
}

.service-formats {
    margin: 20px 0;
}

.service-formats div {
    padding: 8px 0;
    font-size: 1rem;
    border-left: 3px solid var(--accent-color);
    padding-left: 16px;
    margin-bottom: 8px;
}

.service-cards-grid {
    display: flex;
    gap: 40px;
    padding: 80px 20px;
    flex-wrap: wrap;
}

.service-card-detailed {
    flex: 1 1 calc(50% - 20px);
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-card-detailed h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card-detailed img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: var(--bg-light);
}

.service-card-detailed p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-includes {
    margin: 20px 0;
    padding-left: 20px;
}

.service-includes li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.6;
}

.service-detail-compact {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

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

.compact-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.compact-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.price-inline {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
}

.services-cta {
    padding: 80px 20px;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.contact-hero {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    padding: 80px 20px;
}

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

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

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-detail p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.email-display {
    color: var(--text-color);
    cursor: default;
}

.contact-map-placeholder {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    text-align: center;
    padding: 40px;
}

.map-overlay p {
    font-size: 1.1rem;
    color: #555;
}

.contact-additional {
    padding: 60px 20px;
    background-color: var(--bg-light);
    max-width: 900px;
    margin: 0 auto;
}

.contact-additional h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-additional p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.contact-cta {
    padding: 80px 20px;
    text-align: center;
}

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

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.thanks-section {
    padding: 100px 20px;
    text-align: center;
    background-color: var(--bg-light);
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: white;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.next-steps {
    padding: 80px 20px;
}

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

.steps-layout {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.step-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.step-item p {
    font-size: 1rem;
    line-height: 1.6;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-page h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.legal-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #555;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 20px 0 12px 0;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-section ul {
    margin: 16px 0 16px 20px;
}

.legal-section ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

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

    .intro-columns,
    .story-section,
    .mission-columns,
    .approach-section,
    .form-section-inline,
    .service-detail-full,
    .service-detail-split,
    .contact-layout {
        flex-direction: column;
    }

    .pillars-grid,
    .features-offset,
    .impact-stats,
    .steps-layout,
    .footer-columns {
        flex-direction: column;
    }

    .nav-magazine {
        flex-direction: column;
        gap: 15px;
    }

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

    .service-card-large,
    .service-card-medium,
    .service-card-small,
    .service-card-detailed {
        flex: 1 1 100%;
    }

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