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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0 20px 10px 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

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

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

.btn-accept:hover {
    background-color: #2980b9;
}

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

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

.header-split {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

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

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
    margin-left: 15px;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8fafb;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a2332;
    font-weight: 700;
}

.hero-left p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #4a5568;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 16px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 30px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.intro-split {
    display: flex;
    align-items: center;
}

.intro-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 500px;
}

.intro-text {
    flex: 1;
    padding: 60px 70px;
}

.intro-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a2332;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.manifesto-full {
    background-color: #ecf3f7;
    padding: 90px 60px;
}

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

.manifesto-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2332;
}

.manifesto-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.manifesto-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.manifesto-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.manifesto-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.services-split {
    display: flex;
}

.services-text {
    flex: 1;
    padding: 70px 60px;
    background-color: #f9fbfc;
}

.services-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a2332;
}

.services-text > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a5568;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #5a6c7d;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
}

.services-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.services-image img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 600px;
}

.philosophy-asymmetric {
    padding: 80px 60px;
    background-color: #ffffff;
}

.philosophy-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.philosophy-text-block {
    flex: 1.2;
}

.philosophy-text-block h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a2332;
}

.philosophy-text-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.philosophy-image-block {
    flex: 0.8;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.philosophy-image-block img {
    width: 100%;
    display: block;
}

.form-section-split {
    display: flex;
    background-color: #f4f7f9;
}

.form-intro {
    flex: 0.8;
    padding: 60px 50px;
    background-color: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.7;
}

.form-container {
    flex: 1.2;
    padding: 60px 70px;
    background-color: #ffffff;
}

.main-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d7de;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    padding: 14px 40px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonial-strip {
    background-color: #1a2332;
    padding: 60px 80px;
}

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

.testimonial-content blockquote {
    border: none;
}

.testimonial-content p {
    font-size: 24px;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-content cite {
    font-size: 16px;
    color: #b0c4d4;
    font-style: normal;
}

.footer-modern {
    background-color: #1a2332;
    color: #b0c4d4;
    padding: 60px 40px 20px;
}

.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

.footer-col ul li a {
    color: #b0c4d4;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1300px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #a0b0c0;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #8a9ab0;
}

.about-hero-split {
    display: flex;
    min-height: 500px;
}

.about-hero-content {
    flex: 1;
    padding: 80px 70px;
    background-color: #f8fafb;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-content h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a2332;
}

.about-hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
}

.about-hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.about-hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.origin-story {
    padding: 80px 60px;
    background-color: #ffffff;
}

.story-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.story-image img {
    width: 100%;
    display: block;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a2332;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.principles-full {
    background-color: #ecf3f7;
    padding: 80px 60px;
}

.principles-container {
    max-width: 1200px;
    margin: 0 auto;
}

.principles-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2332;
}

.principles-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.principle-block {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.principle-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.principle-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.approach-asymmetric {
    padding: 80px 60px;
    background-color: #ffffff;
}

.approach-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.approach-text-primary {
    flex: 1 1 100%;
}

.approach-text-primary h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a2332;
}

.approach-text-primary p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.approach-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.approach-visual img {
    width: 100%;
    display: block;
}

.approach-text-secondary {
    flex: 1;
    padding-top: 20px;
}

.approach-text-secondary p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.team-preview {
    background-color: #f4f7f9;
    padding: 70px 60px;
}

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

.team-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a2332;
}

.team-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.values-split {
    display: flex;
}

.values-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.values-image img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 500px;
}

.values-text {
    flex: 1;
    padding: 60px 70px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a2332;
}

.values-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.cta-about {
    background-color: #2c3e50;
    padding: 80px 60px;
}

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

.cta-content-center h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content-center p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #d0dae2;
}

.services-hero {
    background-color: #f8fafb;
    padding: 80px 60px;
}

.services-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a2332;
}

.services-hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
}

.services-intro-split {
    display: flex;
    align-items: center;
}

.services-intro-text {
    flex: 1;
    padding: 60px 70px;
    background-color: #ffffff;
}

.services-intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a2332;
}

.services-intro-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-intro-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.services-intro-image img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 450px;
}

.service-detail-full {
    padding: 0;
}

.service-item-split {
    display: flex;
    align-items: center;
}

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

.service-detail-text {
    flex: 1;
    padding: 70px 60px;
    background-color: #f9fbfc;
}

.service-detail-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a2332;
}

.service-detail-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a5568;
}

.service-details {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e0e6ea;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-timeline {
    font-size: 15px;
    color: #5a6c7d;
    font-weight: 500;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
}

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 450px;
}

.services-process {
    background-color: #ecf3f7;
    padding: 80px 60px;
}

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

.process-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a2332;
}

.process-content > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #4a5568;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.process-step {
    flex: 1 1 calc(33.333% - 25px);
    min-width: 250px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 6px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.services-cta-split {
    display: flex;
}

.services-cta-content {
    flex: 1;
    padding: 70px 60px;
    background-color: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.services-cta-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.services-cta-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.services-cta-visual img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 450px;
}

.contact-hero {
    background-color: #f8fafb;
    padding: 80px 60px;
}

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

.contact-hero-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a2332;
}

.contact-hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-main-split {
    display: flex;
}

.contact-info {
    flex: 1;
    padding: 70px 60px;
    background-color: #ffffff;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a2332;
}

.contact-detail-block {
    margin-bottom: 35px;
}

.contact-detail-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-detail-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 600px;
}

.contact-approach {
    background-color: #ecf3f7;
    padding: 80px 60px;
}

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

.approach-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a2332;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.approach-item {
    flex: 1 1 calc(50% - 18px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 6px;
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-faq-split {
    display: flex;
}

.faq-text {
    flex: 1;
    padding: 70px 60px;
    background-color: #ffffff;
}

.faq-text h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a2332;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.faq-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.faq-visual img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 550px;
}

.contact-alternative {
    background-color: #f4f7f9;
    padding: 70px 60px;
}

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

.alternative-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a2332;
}

.alternative-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.alternative-content ul {
    margin: 25px 0;
    padding-left: 25px;
}

.alternative-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #5a6c7d;
}

.thanks-hero {
    background-color: #ecf8f3;
    padding: 90px 60px;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a2332;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-details {
    padding: 70px 60px;
    background-color: #ffffff;
}

.thanks-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.thanks-info {
    flex: 1;
}

.thanks-info h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a2332;
}

.thanks-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.thanks-info ul {
    margin: 25px 0;
    padding-left: 25px;
}

.thanks-info ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #5a6c7d;
}

#serviceConfirmation {
    margin-top: 25px;
    padding: 20px;
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
}

.thanks-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.thanks-visual img {
    width: 100%;
    display: block;
}

.thanks-resources {
    background-color: #f4f7f9;
    padding: 70px 60px;
}

.resources-content {
    max-width: 1100px;
    margin: 0 auto;
}

.resources-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a2332;
}

.resource-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.resource-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 250px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 6px;
}

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.resource-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #5a6c7d;
}

.resource-card a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-card a:hover {
    color: #2980b9;
}

.legal-hero {
    background-color: #f8fafb;
    padding: 70px 60px;
}

.legal-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.legal-hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a2332;
}

.legal-hero-content p {
    font-size: 16px;
    color: #7f8c8d;
}

.legal-content {
    padding: 70px 60px;
    background-color: #ffffff;
}

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

.legal-container h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a2332;
}

.legal-container h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a5568;
}

.legal-container ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #5a6c7d;
}

.legal-container strong {
    color: #2c3e50;
    font-weight: 600;
}

.cookie-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

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

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

.cookie-table td {
    font-size: 15px;
    color: #5a6c7d;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .services-split,
    .about-hero-split,
    .story-layout,
    .values-split,
    .services-intro-split,
    .service-item-split,
    .services-cta-split,
    .contact-main-split,
    .contact-faq-split,
    .form-section-split,
    .thanks-layout {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right,
    .intro-image,
    .intro-text,
    .services-text,
    .services-image,
    .about-hero-content,
    .about-hero-visual,
    .story-image,
    .story-text,
    .values-image,
    .values-text,
    .services-intro-text,
    .services-intro-image,
    .service-detail-text,
    .service-detail-image,
    .services-cta-content,
    .services-cta-visual,
    .contact-info,
    .contact-visual,
    .faq-text,
    .faq-visual,
    .form-intro,
    .form-container,
    .thanks-info,
    .thanks-visual {
        flex: 1 1 100%;
    }

    .hero-left h1,
    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .manifesto-item,
    .principle-block {
        flex: 1 1 100%;
    }

    .philosophy-layout,
    .approach-layout {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .hero-left,
    .form-intro,
    .contact-info,
    .services-text {
        padding: 50px 30px;
    }

    .manifesto-full,
    .principles-full,
    .services-process {
        padding: 60px 30px;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: stretch;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}