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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    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 {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: #ffffff;
    color: #2c2c2c;
}

.cookie-accept:hover {
    background: #e0e0e0;
}

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

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

.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    max-width: 90%;
}

.nav-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

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

.nav-links a:hover {
    color: #666;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta button {
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.hero-visual {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtext {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 300;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #3a4a5c 100%);
    z-index: 1;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%23000000" opacity="0.05"/></svg>');
}

section {
    padding: 5rem 2rem;
}

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

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

.hook-section {
    background: #f8f8f8;
}

.hook-section h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hook-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.problem-reveal {
    background: #ffffff;
}

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

.content-left,
.content-right {
    flex: 1;
}

.content-left h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
}

.story-amplify {
    background: #1a1a1a;
    color: #ffffff;
    padding: 8rem 2rem;
}

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

.large-text {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    font-weight: 300;
}

.insight-block {
    background: #f0f0f0;
}

.insight-block h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.insight-card {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.insight-card.highlight {
    background: #1a1a1a;
    color: #ffffff;
}

.insight-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.insight-card ul {
    list-style: none;
}

.insight-card ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.insight-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.insight-card.highlight ul li::before {
    color: #ffffff;
}

.trust-narrative {
    background: #ffffff;
    padding: 6rem 2rem;
}

.trust-narrative h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.trust-narrative p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.testimonial-inline {
    background: #2c3e50;
    padding: 4rem 2rem;
}

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

.quote {
    font-size: 1.8rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.author {
    font-size: 1.1rem;
    color: #b0b0b0;
}

.testimonial-inline.secondary {
    background: #34495e;
}

.value-reveal {
    background: #f8f8f8;
    padding: 6rem 2rem;
}

.value-reveal h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

.value-columns {
    display: flex;
    gap: 3rem;
}

.value-item {
    flex: 1;
    text-align: center;
}

.icon-placeholder {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
}

.value-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
}

.visual-break {
    padding: 0;
}

.image-full-width {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.benefits-cascade {
    background: #ffffff;
    padding: 6rem 2rem;
}

.benefits-cascade h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.benefit-stack {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefit-row h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-row p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.6;
}

.services-pricing {
    background: #f0f0f0;
    padding: 6rem 2rem;
}

.services-pricing h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    background: #1a1a1a;
    color: #ffffff;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f5576c;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card.featured p {
    color: #d0d0d0;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-card.featured .price {
    color: #ffffff;
}

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

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

.service-card.featured .select-service {
    background: #ffffff;
    color: #1a1a1a;
}

.service-card.featured .select-service:hover {
    background: #e0e0e0;
}

.urgency-element {
    background: #2c3e50;
    padding: 3rem 2rem;
}

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

.urgency-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.urgency-box p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #d0d0d0;
}

.urgency-box strong {
    color: #f5576c;
}

.final-trust {
    background: #f8f8f8;
    padding: 6rem 2rem;
}

.final-trust h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.testimonial-card {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #1a1a1a;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.6;
}

.testimonial-card span {
    font-size: 0.95rem;
    color: #666;
}

.form-section {
    background: #ffffff;
    padding: 6rem 2rem;
}

.form-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-section > .narrow-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.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: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.submit-btn:hover {
    background: #333;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.final-cta {
    background: #1a1a1a;
    color: #ffffff;
    padding: 6rem 2rem;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #d0d0d0;
}

.cta-large {
    padding: 1.25rem 3rem;
    background: #ffffff;
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

footer {
    background: #2c2c2c;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p {
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

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

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

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

.page-hero {
    padding: 10rem 2rem 5rem;
    text-align: center;
    background: #f0f0f0;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.3rem;
    color: #666;
}

.about-story {
    padding: 6rem 2rem;
    background: #ffffff;
}

.about-img {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.values-section {
    background: #f8f8f8;
    padding: 6rem 2rem;
}

.values-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.value-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-block p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
}

.team-section {
    background: #ffffff;
    padding: 6rem 2rem;
}

.team-section h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.team-section p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.process-section {
    background: #f0f0f0;
    padding: 6rem 2rem;
}

.process-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.step h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
}

.commitment-section {
    background: #ffffff;
    padding: 6rem 2rem;
}

.commitment-section h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.commitment-section p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.services-detail {
    background: #f0f0f0;
    padding: 4rem 2rem;
}

.service-detail-card {
    background: #ffffff;
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    position: relative;
}

.service-detail-card.featured {
    background: #1a1a1a;
    color: #ffffff;
}

.badge-top {
    position: absolute;
    top: -15px;
    left: 3rem;
    background: #f5576c;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    font-size: 2.2rem;
    font-weight: 600;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.service-detail-card.featured .price-large {
    color: #ffffff;
}

.service-body p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-detail-card.featured .service-body p {
    color: #d0d0d0;
}

.service-body h4 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.service-body ul li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-detail-card.featured .service-body ul li {
    color: #d0d0d0;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.service-detail-card.featured .cta-btn {
    background: #ffffff;
    color: #1a1a1a;
}

.service-detail-card.featured .cta-btn:hover {
    background: #e0e0e0;
}

.services-cta {
    background: #ffffff;
    padding: 4rem 2rem;
}

.services-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.services-cta p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.cta-btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.contact-info {
    background: #f0f0f0;
    padding: 4rem 2rem;
}

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

.contact-card {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-card p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
}

.contact-card a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-additional {
    background: #ffffff;
    padding: 6rem 2rem;
}

.contact-additional h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-additional > .narrow-content > p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.expectation-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.expectation-item p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
}

.directions-section {
    background: #f8f8f8;
    padding: 4rem 2rem;
}

.directions-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.thanks-hero {
    background: #f0f0f0;
    padding: 8rem 2rem 6rem;
}

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

.thanks-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 3rem;
}

.confirmation-box {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.confirmation-box h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.step-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-text p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
}

.order-summary {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.order-summary h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.order-summary p {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #444;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.btn-primary {
    background: #1a1a1a;
    color: #ffffff;
}

.btn-primary:hover {
    background: #333;
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.thanks-info {
    background: #ffffff;
    padding: 4rem 2rem;
}

.thanks-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.thanks-info p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.thanks-info a {
    color: #1a1a1a;
    font-weight: 600;
}

.legal-page {
    padding: 8rem 2rem 4rem;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.update-date {
    color: #666;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

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

.legal-page ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0.75rem;
}

.legal-page a {
    color: #1a1a1a;
    font-weight: 600;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookies-table th {
    background: #f0f0f0;
    font-weight: 600;
}

.cookies-table td {
    font-size: 1.05rem;
    color: #444;
}

@media (max-width: 968px) {
    .floating-nav {
        flex-direction: column;
        gap: 1rem;
        top: 1rem;
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .hero-subtext {
        font-size: 1.2rem;
    }

    .split-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .value-columns {
        flex-direction: column;
        gap: 2rem;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

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

    .process-steps {
        flex-direction: column;
        gap: 3rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .large-text {
        font-size: 1.3rem;
    }

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    section {
        padding: 3rem 1rem;
    }

    .page-hero {
        padding: 8rem 1rem 3rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

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

    .hook-section h2 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .legal-page h1 {
        font-size: 2.2rem;
    }
}