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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-medium {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    gap: 24px;
}

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

.nav-menu a:hover {
    color: #2563eb;
    text-decoration: none;
}

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

.hero-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
    max-width: 800px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-hero {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.cta-hero:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
}

.story-intro {
    padding: 120px 20px;
    background: #f9fafb;
}

.story-content {
    max-width: 720px;
    margin: 0 auto;
}

.story-hook {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 32px;
    color: #374151;
}

.story-reveal {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
}

.problem-section {
    padding: 120px 20px;
    background: #ffffff;
}

.section-heading {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 64px;
    text-align: center;
    color: #1a1a1a;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin-bottom: 64px;
}

.problem-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.problem-visual {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.problem-item h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.problem-item p {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
}

.cta-inline {
    text-align: center;
    margin-top: 48px;
}

.btn-secondary {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.insight-visual {
    padding: 120px 20px;
    background: #111827;
    color: #ffffff;
}

.insight-split {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.insight-image {
    border-radius: 16px;
    overflow: hidden;
}

.insight-text h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.insight-text p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.insight-list {
    list-style: none;
    margin: 32px 0;
}

.insight-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 18px;
}

.insight-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 20px;
}

.insight-emphasis {
    font-size: 24px;
    font-weight: 700;
    margin-top: 32px;
    color: #60a5fa;
}

.testimonials-flow {
    padding: 120px 20px;
    background: #f9fafb;
}

.testimonials-heading {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 64px;
    color: #1a1a1a;
}

.testimonial-card {
    background: #ffffff;
    padding: 48px;
    border-radius: 16px;
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
}

.services-reveal {
    padding: 120px 20px;
    background: #ffffff;
}

.services-heading {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 64px;
    color: #1a1a1a;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card {
    background: #f9fafb;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

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

.service-card.featured {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: #ffffff;
}

.service-image {
    height: 280px;
    overflow: hidden;
}

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

.service-details {
    padding: 40px;
}

.service-details h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #4b5563;
}

.service-card.featured .service-details p {
    color: rgba(255, 255, 255, 0.9);
}

.service-price {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #2563eb;
}

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

.btn-service {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-service:hover {
    background: #1d4ed8;
}

.service-card.featured .btn-service {
    background: #ffffff;
    color: #2563eb;
}

.service-card.featured .btn-service:hover {
    background: #f3f4f6;
}

.urgency-block {
    padding: 80px 20px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: #ffffff;
}

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

.urgency-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
}

.urgency-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-urgency {
    background: #ffffff;
    color: #dc2626;
    border: none;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.form-section {
    padding: 120px 20px;
    background: #f9fafb;
}

.form-heading {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-subheading {
    font-size: 18px;
    text-align: center;
    margin-bottom: 48px;
    color: #6b7280;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-submit {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #1d4ed8;
}

.final-trust {
    padding: 120px 20px;
    background: #ffffff;
}

.final-trust h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 64px;
    color: #1a1a1a;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trust-item {
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta button {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    transition: all 0.3s;
}

.sticky-cta button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.footer {
    background: #111827;
    color: #ffffff;
    padding: 64px 20px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #9ca3af;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.98);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 24px 20px;
    z-index: 10000;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie-accept {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-accept:hover {
    background: #1d4ed8;
}

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.page-header {
    padding: 160px 20px 80px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.about-story {
    padding: 80px 20px;
    background: #ffffff;
}

.story-block {
    margin-bottom: 48px;
}

.story-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.story-visual {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.mission-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.mission-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.mission-statement {
    font-size: 22px;
    line-height: 1.7;
    text-align: center;
    color: #374151;
}

.team-section {
    padding: 80px 20px;
    background: #ffffff;
}

.team-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 64px;
    color: #1a1a1a;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.team-role {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
}

.values-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.values-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 64px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
}

.stats-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: #ffffff;
}

.stats-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 64px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.cta-section {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #6b7280;
}

.btn-primary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary:hover {
    background: #1d4ed8;
    text-decoration: none;
    transform: translateY(-2px);
}

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

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 80px;
    padding: 48px;
    background: #f9fafb;
    border-radius: 16px;
}

.service-detail-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-price-tag {
    font-size: 42px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 24px;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #374151;
}

.service-detail-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
}

.service-process {
    padding: 80px 20px;
    background: #f9fafb;
}

.service-process h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 64px;
    color: #1a1a1a;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    max-width: 400px;
}

.service-faq {
    padding: 80px 20px;
    background: #ffffff;
}

.service-faq h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 64px;
    color: #1a1a1a;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.contact-info-section {
    padding: 80px 20px;
    background: #ffffff;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 40px 24px;
    background: #f9fafb;
    border-radius: 16px;
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
}

.map-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.map-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.map-placeholder {
    background: #e5e7eb;
    padding: 80px 40px;
    border-radius: 16px;
    text-align: center;
}

.map-placeholder p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #374151;
}

.map-directions {
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.contact-cta {
    padding: 80px 20px;
    background: #ffffff;
}

.contact-cta h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-cta p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: #6b7280;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.visit-info {
    padding: 80px 20px;
    background: #f9fafb;
}

.visit-info h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 64px;
    color: #1a1a1a;
}

.info-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.info-box {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
}

.info-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.info-box ul {
    list-style: none;
}

.info-box ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

.info-box ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #2563eb;
    font-weight: 700;
    font-size: 20px;
}

.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

.thanks-content {
    text-align: center;
    max-width: 720px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #ffffff;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    font-weight: 700;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.service-confirmation {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 48px;
    font-size: 18px;
    font-weight: 600;
}

.thanks-next {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 48px;
    text-align: left;
}

.thanks-next h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.thanks-steps {
    list-style-position: inside;
    font-size: 16px;
    line-height: 2;
}

.thanks-steps li {
    padding: 8px 0;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.legal-page {
    padding: 120px 20px 80px;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #374151;
}

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

.legal-page ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #4b5563;
}

.legal-note {
    background: #f9fafb;
    padding: 16px 24px;
    border-left: 4px solid #2563eb;
    margin-top: 32px;
    font-size: 15px;
    color: #374151;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table th {
    background: #f9fafb;
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    border-bottom: 2px solid #e5e7eb;
}

.cookies-table td {
    padding: 12px 16px;
    font-size: 14px;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .hero-title {
        font-size: 72px;
    }

    .problem-grid {
        flex-direction: row;
    }

    .insight-split {
        flex-direction: row;
        align-items: center;
    }

    .insight-image {
        flex: 1;
    }

    .insight-text {
        flex: 1;
    }

    .services-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .service-detail-card {
        flex-direction: row;
    }

    .service-detail-card.reverse {
        flex-direction: row-reverse;
    }

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

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

    .trust-points {
        flex-direction: row;
    }

    .process-timeline {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 767px) {
    .nav-floating {
        top: 10px;
        left: 10px;
        right: 10px;
        transform: none;
        padding: 12px 16px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        margin-top: 12px;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 16px 24px;
        border-bottom: 1px solid #f3f4f6;
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-heading {
        font-size: 32px;
    }

    .sticky-cta {
        left: 20px;
        right: 20px;
    }

    .sticky-cta button {
        width: 100%;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .contact-form {
        padding: 32px 24px;
    }
}