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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background: #f5f5f5;
    border-radius: 4px;
}

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

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

.main-nav a:hover {
    color: #0066cc;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    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 {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #0066cc;
    color: #fff;
}

.btn-accept:hover {
    background: #0052a3;
}

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

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

.hero-asymmetric {
    margin-top: 80px;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f8f8;
}

.hero-image-offset {
    position: absolute;
    right: 0;
    top: 50px;
    width: 60%;
    height: 500px;
    overflow: hidden;
    background: #e0e0e0;
}

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

.hero-text-overlay {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 3rem;
    margin-left: 5%;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-text-overlay h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text-overlay p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
}

.story-intro {
    padding: 5rem 2rem;
    background: #ffffff;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.story-block-left {
    flex: 1;
    padding-right: 2rem;
}

.story-block-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-block-left p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #333;
    line-height: 1.8;
}

.image-block-right {
    width: 400px;
    height: 500px;
    background: #e0e0e0;
    flex-shrink: 0;
}

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

.problem-amplification {
    padding: 4rem 2rem;
    background: #0a0a0a;
    color: #fff;
}

.offset-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem 2rem;
    background: #1a1a1a;
    position: relative;
}

.card-1 {
    transform: translateY(-20px);
}

.card-2 {
    transform: translateY(20px);
}

.card-3 {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.5;
}

.insight-reveal {
    padding: 5rem 2rem;
    background: #f5f5f5;
}

.insight-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.insight-wrapper h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.insight-item {
    padding: 2rem;
    background: #fff;
    border-left: 4px solid #0066cc;
}

.insight-item p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
}

.solution-introduction {
    padding: 5rem 2rem;
    background: #fff;
}

.solution-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.solution-image {
    width: 500px;
    height: 600px;
    flex-shrink: 0;
    background: #e0e0e0;
}

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

.solution-content {
    flex: 1;
}

.solution-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.solution-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #444;
    line-height: 1.7;
}

.cta-inline {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-inline:hover {
    background: #0052a3;
}

.trust-building {
    padding: 5rem 2rem;
    background: #fafafa;
}

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

.trust-container h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonial-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.t-card-1 {
    margin-left: 0;
    max-width: 700px;
}

.t-card-2 {
    margin-left: auto;
    max-width: 750px;
}

.t-card-3 {
    margin-left: 50px;
    max-width: 650px;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #666;
    font-size: 0.95rem;
}

.benefits-reveal {
    padding: 5rem 2rem;
    background: #fff;
}

.benefits-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.benefits-wrapper h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.service-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 300px;
    background: #f8f8f8;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sc-1 {
    transform: translateY(-15px);
}

.sc-3 {
    transform: translateY(15px);
}

.sc-5 {
    transform: translateY(-10px);
}

.service-image {
    width: 100%;
    height: 250px;
    background: #e0e0e0;
    overflow: hidden;
}

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

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #333;
}

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

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

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

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

.form-intro p {
    font-size: 1.05rem;
    color: #666;
}

.service-form {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #0052a3;
}

.final-urgency {
    padding: 4rem 2rem;
    background: #1a1a1a;
    color: #fff;
}

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

.urgency-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ccc;
}

.main-footer {
    background: #0a0a0a;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #aaa;
    font-size: 0.95rem;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.6;
}

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

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

.about-hero,
.services-hero,
.contact-hero,
.thanks-hero {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: #f5f5f5;
    text-align: center;
}

.about-hero-content h1,
.services-hero h1,
.contact-hero h1,
.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.about-hero-content p,
.services-hero p,
.contact-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 5rem 2rem;
    background: #fff;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.7;
}

.story-image {
    width: 450px;
    height: 500px;
    flex-shrink: 0;
    background: #e0e0e0;
}

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

.about-mission {
    padding: 4rem 2rem;
    background: #fafafa;
}

.mission-container {
    max-width: 1100px;
    margin: 0 auto;
}

.mission-container h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.mission-blocks {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.mission-block {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #fff;
    border-radius: 4px;
}

.mission-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.mission-block p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.about-team {
    padding: 5rem 2rem;
    background: #fff;
}

.team-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.team-wrapper h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.team-member:nth-child(even) {
    flex-direction: row-reverse;
}

.member-image {
    width: 400px;
    height: 300px;
    flex-shrink: 0;
    background: #e0e0e0;
}

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

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.member-info p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.about-values {
    padding: 4rem 2rem;
    background: #f8f8f8;
}

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

.values-container h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.value-number {
    width: 60px;
    height: 60px;
    background: #0066cc;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    border-radius: 4px;
}

.value-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.value-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.about-cta {
    padding: 4rem 2rem;
    background: #1a1a1a;
    color: #fff;
}

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

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #0052a3;
}

.services-list {
    padding: 4rem 2rem;
    background: #fff;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail {
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-header {
    padding: 2rem;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-header h2 {
    font-size: 1.8rem;
    margin: 0;
}

.service-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
}

.service-detail-content {
    padding: 2rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.service-detail:nth-child(even) .service-detail-content {
    flex-direction: row-reverse;
}

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

.service-detail-text h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-detail-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-text ul li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.6;
}

.service-detail-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.service-detail-image {
    width: 400px;
    height: 300px;
    flex-shrink: 0;
    background: #e0e0e0;
}

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

.services-cta {
    padding: 4rem 2rem;
    background: #0066cc;
    color: #fff;
}

.contact-content {
    padding: 4rem 2rem;
    background: #fff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.contact-image {
    width: 450px;
    height: 500px;
    flex-shrink: 0;
    background: #e0e0e0;
}

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

.contact-additional {
    padding: 4rem 2rem;
    background: #fafafa;
}

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

.additional-content h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #fff;
    border-radius: 4px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #0066cc;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

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

.contact-faq {
    padding: 4rem 2rem;
    background: #fff;
}

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

.faq-container h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 1.5rem;
    background: #f8f8f8;
    border-left: 3px solid #0066cc;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #666;
}

.thanks-details {
    padding: 4rem 2rem;
    background: #fff;
}

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

.thanks-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.next-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 4px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #0066cc;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.service-confirmation {
    margin-top: 2rem;
}

.selected-service-box {
    padding: 2rem;
    background: #e8f4ff;
    border-left: 4px solid #0066cc;
    border-radius: 4px;
}

.selected-service-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.service-note {
    font-size: 0.95rem;
    color: #555;
}

.thanks-resources {
    padding: 4rem 2rem;
    background: #fafafa;
}

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

.resources-container h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.resource-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #fff;
    border-radius: 4px;
    text-align: center;
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.resource-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #0066cc;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #0066cc;
    color: #fff;
}

.thanks-contact {
    padding: 3rem 2rem;
    background: #fff;
}

.contact-reminder {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-reminder h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-reminder p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.email-display {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0066cc;
}

.legal-content {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: #fff;
}

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

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

.last-updated {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.legal-container p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-container li {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #0066cc;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #0052a3;
}

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

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

.cookie-table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #555;
}

@media (max-width: 1024px) {
    .hero-image-offset {
        width: 50%;
    }

    .story-container,
    .solution-layout,
    .contact-layout,
    .story-layout {
        flex-direction: column;
    }

    .image-block-right,
    .solution-image,
    .contact-image,
    .story-image {
        width: 100%;
        max-width: 600px;
    }

    .service-cards-asymmetric {
        flex-direction: column;
    }

    .service-card {
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-asymmetric {
        min-height: auto;
    }

    .hero-image-offset {
        position: relative;
        width: 100%;
        top: 0;
    }

    .hero-text-overlay {
        margin-left: 0;
        margin-top: -100px;
    }

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

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

    .stat-card {
        transform: none !important;
    }

    .testimonial-card {
        margin-left: 0 !important;
        max-width: 100% !important;
    }

    .service-detail-content {
        flex-direction: column !important;
    }

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

    .team-member {
        flex-direction: column !important;
    }

    .member-image {
        width: 100%;
    }
}
