* {
    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;
}

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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;
    min-width: 300px;
    margin: 0;
}

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

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

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

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

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

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

.header-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a3a52;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-floating {
    display: flex;
    gap: 25px;
}

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

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

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    overflow: hidden;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 550px;
    margin-left: 80px;
}

.hero-text-block {
    background-color: rgba(255,255,255,0.95);
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a3a52;
}

.hero-text-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #34495e;
}

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

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52,152,219,0.3);
}

.hero-image-overlap {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(3deg);
    width: 700px;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
}

.intro-offset {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-narrow {
    flex: 1;
    padding-left: 120px;
}

.intro-narrow h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a3a52;
}

.intro-narrow p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
}

.intro-image-side {
    width: 480px;
    height: 360px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-40px);
}

.intro-image-side img {
    width: 100%;
    height: 100%;
}

.problem-amplification {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.problem-grid-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.problem-card {
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.problem-card-1 {
    flex: 1;
    min-width: 320px;
    margin-top: 0;
}

.problem-card-2 {
    flex: 1;
    min-width: 320px;
    margin-top: 60px;
}

.problem-card-3 {
    flex: 1;
    min-width: 320px;
    margin-top: 30px;
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #c0392b;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.insight-reveal {
    padding: 100px 40px;
    background-color: #ffffff;
}

.insight-content-overlap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

.insight-text {
    flex: 1;
    padding-right: 60px;
}

.insight-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a3a52;
}

.insight-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.insight-visual {
    width: 520px;
    height: 380px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transform: rotate(-2deg);
}

.insight-visual img {
    width: 100%;
    height: 100%;
}

.trust-building {
    background-color: #ecf0f1;
    padding: 90px 40px;
}

.trust-container {
    max-width: 1300px;
    margin: 0 auto;
}

.trust-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a3a52;
}

.testimonials-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.testimonial {
    background-color: #ffffff;
    padding: 35px;
    max-width: 380px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-offset-1 {
    margin-top: 0;
}

.testimonial-offset-2 {
    margin-top: 50px;
}

.testimonial-offset-3 {
    margin-top: 25px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
    font-style: italic;
}

.testimonial cite {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #7f8c8d;
    font-style: normal;
}

.services-preview {
    padding: 100px 40px;
    background-color: #ffffff;
}

.services-intro-asymmetric {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.services-intro-asymmetric h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a3a52;
}

.services-intro-asymmetric p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    padding: 30px;
    border: 1px solid #e0e4e8;
    transition: all 0.3s ease;
}

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

.service-card-large {
    flex: 2;
    min-width: 400px;
}

.service-card-medium {
    flex: 1;
    min-width: 350px;
}

.service-card-small {
    flex: 1;
    min-width: 300px;
}

.service-image-wrapper {
    width: 100%;
    height: 220px;
    margin-bottom: 25px;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a3a52;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: #34495e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.benefits-irregular {
    padding: 90px 40px;
    background-color: #f4f6f8;
}

.benefits-irregular h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a3a52;
}

.benefits-asymmetric-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    background-color: #ffffff;
    padding: 35px;
    flex: 1;
    min-width: 280px;
    border-left: 4px solid #3498db;
}

.benefit-position-1 {
    margin-top: 0;
}

.benefit-position-2 {
    margin-top: 40px;
}

.benefit-position-3 {
    margin-top: 20px;
}

.benefit-position-4 {
    margin-top: 60px;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a3a52;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.form-section-offset {
    padding: 100px 40px;
    background-color: #ffffff;
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.contact-form-asymmetric {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.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;
    border: 1px solid #d0d5dd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta-asymmetric {
    padding: 80px 40px;
    background: linear-gradient(135deg, #1a3a52 0%, #2c5f7e 100%);
    text-align: center;
}

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

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

.final-cta-content p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 35px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #1a3a52;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

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

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

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

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

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

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

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

@media (max-width: 1024px) {
    .hero-content-offset {
        margin-left: 20px;
    }

    .hero-image-overlap {
        width: 500px;
        height: 400px;
    }

    .intro-offset {
        flex-direction: column;
    }

    .intro-narrow {
        padding-left: 0;
    }

    .intro-image-side {
        width: 100%;
        transform: translateY(0);
    }

    .insight-content-overlap {
        flex-direction: column;
    }

    .insight-visual {
        width: 100%;
        transform: rotate(0);
    }

    .form-container-asymmetric {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-asymmetric {
        flex-direction: column;
        gap: 15px;
    }

    .hero-text-block h1 {
        font-size: 32px;
    }

    .hero-image-overlap {
        display: none;
    }

    .services-grid-irregular {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }
}

.page-header {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5f7e 100%);
    padding: 80px 40px;
    text-align: center;
}

.page-header-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-header-content p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-story {
    padding: 100px 40px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.story-block {
    flex: 1;
}

.story-block h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a3a52;
}

.story-block p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.story-image {
    width: 500px;
    height: 380px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

.approach-section {
    padding: 90px 40px;
    background-color: #f4f6f8;
}

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

.approach-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a3a52;
}

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

.approach-item {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a3a52;
}

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

.values-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.values-container {
    max-width: 1300px;
    margin: 0 auto;
}

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

.values-list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 35px;
    border-top: 4px solid #3498db;
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a3a52;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.team-expertise {
    padding: 90px 40px;
    background-color: #ecf0f1;
}

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

.expertise-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a3a52;
}

.expertise-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.cta-about {
    padding: 80px 40px;
    background: linear-gradient(135deg, #2c5f7e 0%, #1a3a52 100%);
    text-align: center;
}

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

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

.cta-about-content p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 30px;
}

.services-detailed {
    padding: 80px 40px;
    background-color: #ffffff;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e8ecef;
}

.service-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a3a52;
}

.service-price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.service-detail-content ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #34495e;
}

.service-detail-image {
    width: 480px;
    height: 360px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
}

.services-cta {
    padding: 80px 40px;
    background-color: #f4f6f8;
    text-align: center;
}

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

.services-cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a3a52;
}

.services-cta-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #34495e;
}

.contact-main {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

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

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

.contact-item {
    margin-bottom: 35px;
}

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

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #f0f4f8;
    border-left: 4px solid #3498db;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
}

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

.contact-form-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a3a52;
}

.contact-form-page {
    background-color: #f8f9fa;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.thanks-section {
    padding: 100px 40px;
    background-color: #ffffff;
    min-height: 500px;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a3a52;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #34495e;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.service-confirmation p {
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
}

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

.btn-primary-action {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-secondary-action {
    display: inline-block;
    padding: 16px 36px;
    background-color: #34495e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary-action:hover {
    background-color: #2c3e50;
    transform: translateY(-2px);
}

.thanks-additional {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 4px;
    text-align: left;
}

.thanks-additional h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a3a52;
}

.thanks-additional ol {
    list-style: decimal;
    margin-left: 25px;
}

.thanks-additional ol li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page {
    padding: 60px 40px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #1a3a52;
}

.legal-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-container h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.legal-container ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #34495e;
}

.legal-container a {
    color: #3498db;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #2980b9;
}

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

    .story-image {
        width: 100%;
    }

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

    .service-detail {
        flex-direction: column;
    }

    .service-detail-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 32px;
    }

    .thanks-container h1 {
        font-size: 28px;
    }

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

    .legal-container h1 {
        font-size: 32px;
    }

    .approach-grid,
    .values-list {
        flex-direction: column;
    }
}