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

:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 16px;
    background: var(--bg-white);
}

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

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.btn-cookie-accept {
    background: var(--accent-color);
    color: white;
}

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

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

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

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hero-story {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 20px 60px;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.15;
}

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

.hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
}

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

.hero-content-narrow h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-lead {
    font-size: 22px;
    color: var(--text-medium);
    line-height: 1.6;
}

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

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

.intro-narrative {
    padding: 80px 20px;
    background: var(--bg-light);
}

.text-large {
    font-size: 24px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.intro-narrative p {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--text-medium);
}

.text-emphasis {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 40px;
}

.problem-amplification {
    padding: 100px 20px;
}

.container-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.3;
    color: var(--text-dark);
}

.split-text p {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--text-medium);
}

.problem-list {
    list-style: none;
    margin-top: 30px;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: var(--text-medium);
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 24px;
    font-weight: bold;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.insight-reveal {
    padding: 100px 20px;
    background: var(--primary-color);
    color: white;
}

.centered {
    text-align: center;
}

.insight-reveal h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.centered-text {
    text-align: center;
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 60px;
}

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

.insight-card {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.insight-card p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    padding: 20px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

.cta-sticky.show {
    display: block;
}

.cta-sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cta-sticky-content span {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.btn-cta-sticky {
    background: white;
    color: var(--accent-color);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.story-deeper {
    padding: 100px 20px;
}

.story-image-left {
    width: 100%;
    margin-bottom: 40px;
}

.story-image-left img {
    border-radius: 12px;
    width: 100%;
}

.story-text-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.story-text-right p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-medium);
}

.btn-inline {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: var(--accent-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-inline:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.trust-building {
    padding: 100px 20px;
    background: var(--bg-light);
}

.trust-building h2 {
    font-size: 40px;
    margin-bottom: 60px;
}

.testimonial-block {
    margin-bottom: 50px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.testimonial-block blockquote {
    border: none;
}

.testimonial-block p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-block cite {
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.benefit-reveal {
    padding: 100px 20px;
}

.container-split-reverse {
    display: flex;
    flex-direction: column-reverse;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

.visual-break {
    margin: 60px 0;
}

.full-width-image {
    position: relative;
    height: 500px;
}

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

.image-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 40px 60px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.image-overlay-text h3 {
    font-size: 32px;
    line-height: 1.4;
}

.services-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.services-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.featured {
    border: 3px solid var(--accent-color);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    z-index: 10;
}

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

.service-card h3 {
    font-size: 26px;
    margin: 25px 25px 15px;
    color: var(--primary-color);
}

.service-card > p {
    padding: 0 25px;
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 25px;
    margin-bottom: 20px;
}

.service-features span {
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--text-medium);
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    padding: 0 25px;
    margin-bottom: 20px;
}

.btn-select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.urgency-section {
    padding: 60px 20px;
}

.urgency-box {
    background: #fff3cd;
    border-left: 4px solid #ff9800;
    padding: 40px;
    border-radius: 8px;
}

.urgency-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.urgency-box p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.urgency-highlight {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 19px;
}

.form-section {
    padding: 100px 20px;
    background: white;
}

.form-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.order-form {
    max-width: 600px;
    margin: 60px auto 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group input[readonly] {
    background: var(--bg-light);
    cursor: not-allowed;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.form-checkbox label {
    margin: 0;
    font-weight: 400;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.guarantee-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.guarantee-section h2 {
    font-size: 38px;
    margin-bottom: 60px;
}

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

.guarantee-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.guarantee-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.guarantee-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.final-cta {
    padding: 100px 20px;
    text-align: center;
}

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

.final-cta .centered-text {
    margin-bottom: 40px;
}

.cta-buttons-center {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn-primary-large,
.btn-secondary-large {
    padding: 18px 48px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-large {
    background: var(--accent-color);
    color: white;
}

.btn-primary-large:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-secondary-large {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary-large:hover {
    background: var(--primary-color);
    color: white;
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-column ul li a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.page-hero {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 22px;
    opacity: 0.95;
}

.about-story {
    padding: 100px 20px;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 25px;
}

.values-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.values-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
}

.team-philosophy {
    padding: 100px 20px;
}

.manufacturing {
    padding: 100px 20px;
    background: var(--bg-light);
}

.manufacturing h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.manufacturing-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

.mfg-step {
    background: white;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.mfg-step h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.mfg-step p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
}

.sustainability {
    padding: 100px 20px;
}

.sustainability-list {
    list-style: none;
    margin: 30px 0;
}

.sustainability-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 17px;
    color: var(--text-medium);
}

.sustainability-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 20px;
}

.cta-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.services-intro {
    padding: 60px 20px;
    background: white;
}

.intro-text {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-medium);
    text-align: center;
}

.services-detailed {
    padding: 60px 20px;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 80px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08);
    position: relative;
}

.service-detail-card.featured-service {
    border: 3px solid var(--accent-color);
}

.service-detail-card.premium-card {
    border: 3px solid #ffd700;
}

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

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

.service-detail-content {
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-intro {
    font-size: 19px;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-includes,
.service-specs,
.service-benefits {
    margin-bottom: 30px;
}

.service-includes h4,
.service-specs h4,
.service-benefits h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-includes ul,
.service-specs ul,
.service-benefits ul {
    list-style: none;
    padding-left: 0;
}

.service-includes li,
.service-specs li,
.service-benefits li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
    color: var(--text-medium);
}

.service-includes li:before,
.service-specs li:before,
.service-benefits li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 24px;
}

.service-benefits p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
}

.service-price-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--bg-light);
}

.price-large {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-color);
}

.price-original {
    font-size: 24px;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-save {
    font-size: 16px;
    color: var(--success-color);
    font-weight: 600;
}

.service-guarantee {
    padding: 80px 20px;
    background: var(--bg-light);
}

.service-guarantee h2 {
    font-size: 38px;
    margin-bottom: 60px;
}

.guarantee-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

.contact-info-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-info-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.contact-note {
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
}

.contact-reasons {
    padding: 80px 20px;
    background: var(--bg-light);
}

.contact-reasons h2 {
    font-size: 38px;
    margin-bottom: 60px;
}

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

.reason-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.reason-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.reason-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.contact-faq {
    padding: 80px 20px;
}

.contact-faq h2 {
    font-size: 38px;
    margin-bottom: 60px;
}

.faq-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
}

.contact-cta {
    padding: 80px 20px;
    background: var(--bg-light);
}

.cta-box {
    background: white;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.cta-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-box p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
}

.legal-page {
    padding: 140px 20px 80px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-page h4 {
    font-size: 19px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-page li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 140px 20px 80px;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    color: var(--success-color);
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 22px;
    color: var(--text-medium);
    margin-bottom: 60px;
}

.thanks-details {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 60px;
    display: none;
}

.thanks-details.show {
    display: block;
}

.thanks-details h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-color);
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 60px;
}

.thanks-next-steps h3 {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.thanks-guarantee {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.thanks-guarantee h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thanks-guarantee p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

@media (min-width: 768px) {
    .nav-links {
        gap: 25px;
    }

    .hero-content-narrow h1 {
        font-size: 64px;
    }

    .container-split,
    .container-split-reverse {
        flex-direction: row;
    }

    .insight-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .insight-card {
        flex: 1;
        min-width: 250px;
    }

    .story-image-left {
        width: 50%;
        margin-bottom: 0;
    }

    .container-wide {
    
        gap: 60px;
        align-items: center;
    }

    .story-text-right {
        flex: 1;
    }

    .service-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: 300px;
        max-width: calc(50% - 20px);
    }

    .guarantee-grid,
    .values-grid,
    .reasons-grid,
    .guarantee-features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .guarantee-item,
    .value-card,
    .reason-item {
        flex: 1;
        min-width: 250px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .cta-buttons-center,
    .thanks-actions {
        flex-direction: row;
    }

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

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

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

    .service-detail-image {
        width: 45%;
        height: auto;
    }

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

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cta-sticky-content {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .service-card {
        max-width: calc(33.333% - 27px);
    }
}