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

.site-header {
    background-color: #1a1a2e;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #a8b2c1;
    padding: 0.3rem 0.8rem;
    border: 1px solid #3d4a5c;
    border-radius: 3px;
}

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

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #5d9cec;
}

.hero-editorial {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #0f1419;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 2rem;
}

.hero-text-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.7);
    line-height: 1.2;
}

.hero-text-overlay p {
    font-size: 1.4rem;
    font-weight: 300;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.7);
}

.intro-magazine {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.magazine-grid {
    display: flex;
    gap: 3rem;
}

.column-main {
    flex: 2;
}

.column-side {
    flex: 1;
}

.column-main h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 700;
}

.column-main p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #4a5568;
}

.column-main img {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
    background-color: #0f1419;
    object-fit: cover;
}

.info-card {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid #2c5aa0;
}

.info-card img {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    background-color: #1a1a2e;
    object-fit: cover;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-card p {
    color: #4a5568;
    line-height: 1.7;
}

.problem-amplification {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 5rem 2rem;
}

.split-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.text-block p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #d1d5db;
}

.visual-block {
    flex: 1;
    background-color: #0f1419;
}

.visual-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: cover;
}

.insight-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.narrow-column {
    max-width: 800px;
    margin: 0 auto;
}

.narrow-column h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.narrow-column p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.narrow-column img {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 4px;
    background-color: #1a1a2e;
    object-fit: cover;
}

.testimonials-inline {
    padding: 4rem 2rem;
    background-color: #eef2f7;
}

.testimonial-flow {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

blockquote {
    background-color: #ffffff;
    padding: 2.5rem;
    border-left: 5px solid #5d9cec;
    font-size: 1.2rem;
    font-style: italic;
    color: #2c3e50;
    border-radius: 4px;
}

cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: #5d9cec;
    font-size: 0.95rem;
}

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

.services-preview h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.services-asymmetric {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.service-large {
    flex: 2;
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.service-large img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #1a1a2e;
}

.service-large h3 {
    font-size: 1.6rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: #2c3e50;
}

.service-large p {
    padding: 0 1.5rem 1rem;
    color: #4a5568;
}

.service-large .price {
    display: block;
    padding: 0 1.5rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5aa0;
}

.service-small {
    flex: 1;
    min-width: 250px;
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 6px;
    border-top: 4px solid #5d9cec;
}

.service-small h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-small p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.service-small .price {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c5aa0;
}

.cta-inline {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background-color: #2c5aa0;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.btn-secondary:hover {
    background-color: #2c5aa0;
    color: #ffffff;
}

.trust-building {
    padding: 4rem 2rem;
    background-color: #1a1a2e;
}

.credentials-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-block {
    text-align: center;
    color: #ffffff;
}

.stat-block h3 {
    font-size: 4rem;
    font-weight: 800;
    color: #5d9cec;
    margin-bottom: 0.5rem;
}

.stat-block p {
    font-size: 1.1rem;
    color: #d1d5db;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

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

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

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

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

.contact-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #cbd5e0;
    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: #2c5aa0;
}

.btn-submit {
    width: 100%;
    background-color: #2c5aa0;
    color: #ffffff;
    padding: 1.2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.final-cta {
    margin-bottom: 0;
}

.cta-visual {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: #1a1a2e;
}

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

.cta-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
}

.cta-overlay h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fef5e7;
    border-top: 3px solid #f39c12;
}

.disclaimer-text {
    max-width: 1100px;
    margin: 0 auto;
}

.disclaimer-text p {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.7;
}

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

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

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

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

.footer-col p {
    color: #d1d5db;
    line-height: 1.7;
}

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

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

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

.footer-col ul li a:hover {
    color: #5d9cec;
}

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

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

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

.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;
    font-size: 0.95rem;
}

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

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

.btn-accept {
    background-color: #2c5aa0;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1e4076;
}

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

.btn-reject:hover {
    background-color: #3d4a5c;
}

.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2c3e50 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.hero-content-centered {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.hero-content-centered h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content-centered p {
    font-size: 1.3rem;
    color: #d1d5db;
}

.about-story {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.info-card-dark {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.info-card-dark h3 {
    color: #5d9cec;
    margin-bottom: 1rem;
}

.info-card-dark p {
    color: #d1d5db;
}

.team-visual {
    background-color: #f7fafc;
    border-radius: 6px;
    overflow: hidden;
}

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

.approach-section {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

.team-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 6px;
    border-top: 4px solid #2c5aa0;
}

.member-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.role {
    color: #5d9cec;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.member-info p {
    color: #4a5568;
    line-height: 1.7;
}

.partners-section {
    padding: 4rem 2rem;
    background-color: #eef2f7;
}

.partners-content {
    max-width: 1000px;
    margin: 0 auto;
}

.partners-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

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

.partners-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    color: #4a5568;
    font-size: 1.05rem;
}

.partners-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #5d9cec;
    font-weight: bold;
}

.values-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.value-block {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 6px;
    border-left: 5px solid #5d9cec;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-block p {
    color: #4a5568;
}

.cta-about {
    padding: 4rem 2rem;
    background-color: #f7fafc;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

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

.service-block-full,
.service-block-alt {
    margin-bottom: 5rem;
}

.service-content-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-content-split.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.service-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

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

.service-features li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    color: #4a5568;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.service-pricing {
    padding-top: 1rem;
    border-top: 2px solid #eef2f7;
}

.price-label {
    font-weight: 600;
    color: #2c3e50;
    margin-right: 0.5rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
}

.service-image {
    flex: 1;
    background-color: #1a1a2e;
    border-radius: 6px;
    overflow: hidden;
}

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

.service-block-alt {
    background-color: #f9fafb;
    padding: 3rem 2rem;
    border-radius: 8px;
}

.cta-services {
    padding: 4rem 2rem;
    background-color: #1a1a2e;
}

.cta-box-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-box-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-box-centered p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #d1d5db;
}

.contact-info-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-tagline {
    font-size: 1.2rem;
    color: #5d9cec;
    margin-bottom: 2rem;
}

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

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

.contact-item p {
    color: #4a5568;
    line-height: 1.8;
}

.contact-note {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #5d9cec;
}

.contact-note p {
    color: #4a5568;
    font-size: 0.95rem;
}

.contact-visual {
    flex: 1;
    background-color: #f7fafc;
    border-radius: 6px;
    overflow: hidden;
}

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

.location-section {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

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

.location-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

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

.cta-contact {
    padding: 4rem 2rem;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

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

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

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

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

.service-confirmation {
    background-color: #eef7ff;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    border-left: 4px solid #2c5aa0;
}

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1a1a2e;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2c5aa0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.step p {
    color: #4a5568;
    font-size: 0.95rem;
}

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

.additional-resources {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.resources-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.resources-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.resources-container p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

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

.resource-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-top: 4px solid #5d9cec;
}

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

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.resource-card p {
    color: #4a5568;
    margin-bottom: 0;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.last-updated {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #4a5568;
}

.legal-container p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.8;
}

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

.legal-container ul li {
    margin-bottom: 0.8rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #eef2f7;
}

.legal-contact h2 {
    font-size: 1.5rem;
    color: #2c3e50;
}

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

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

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

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

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

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

    .services-asymmetric {
        flex-direction: column;
    }

    .service-content-split,
    .service-content-split.reverse {
        flex-direction: column;
    }

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

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

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

    .hero-text-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-text-overlay p {
        font-size: 1.1rem;
    }

    .column-main h2 {
        font-size: 1.8rem;
    }

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

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

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

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

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

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

    .cookie-buttons {
        justify-content: center;
    }
}