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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c7ab5;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

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

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

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

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

.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
    background: var(--bg-light);
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

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

.split-layout.reverse {
    flex-direction: row-reverse;
}

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.image-block {
    flex: 1;
}

.image-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--bg-white);
}

.btn-secondary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--bg-white);
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--bg-white);
}

.intro-section {
    padding: 80px 0;
}

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

.problem-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.problem-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.solution-split {
    padding: 80px 0;
}

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

.features-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

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

.feature-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.feature-icon {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-inline {
    background: var(--primary-color);
    padding: 60px 20px;
    text-align: center;
}

.cta-content h2 {
    color: var(--bg-white);
    font-size: 38px;
    margin-bottom: 32px;
}

.services-section {
    padding: 80px 0;
}

.services-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 24px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 40px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.service-size {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price-tag span {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-light);
}

.btn-select {
    width: 100%;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

.trust-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: var(--bg-white);
    padding: 36px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 16px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.form-intro p {
    color: var(--text-light);
    font-size: 17px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    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(--primary-color);
}

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

.btn-submit {
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 16px 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: none;
}

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

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

.sticky-content span {
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 600;
}

.btn-sticky {
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-sticky:hover {
    transform: scale(1.05);
    color: var(--bg-white);
}

.footer {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 20px 20px;
}

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

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-column p {
    color: var(--bg-light);
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: var(--bg-light);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--bg-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--bg-light);
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--bg-white);
    text-decoration: underline;
}

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

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

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

.btn-reject {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-accept:hover,
.btn-reject:hover {
    transform: scale(1.05);
}

.page-hero {
    background: var(--primary-color);
    padding: 100px 20px;
    text-align: center;
}

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

.hero-content-centered h1 {
    font-size: 52px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.hero-content-centered p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
}

.story-section {
    padding: 80px 0;
}

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

.mission-section h2 {
    font-size: 42px;
    margin-bottom: 32px;
    text-align: center;
}

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 500;
}

.values-section {
    padding: 80px 0;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.stats-section {
    background: var(--primary-color);
    padding: 80px 20px;
}

.stats-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.approach-section {
    padding: 80px 0;
}

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

.team-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 24px;
}

.team-section p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.cta-section {
    padding: 80px 20px;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-light);
    padding: 60px 40px;
    border-radius: 12px;
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.intro-text {
    text-align: center;
    margin-bottom: 80px;
}

.intro-text h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.intro-text p {
    font-size: 18px;
    color: var(--text-light);
}

.service-detail {
    margin-bottom: 100px;
}

.service-detail.reverse {
    background: var(--bg-light);
    padding: 60px 0;
    margin-left: -20px;
    margin-right: -20px;
}

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

.service-content {
    flex: 1;
    position: relative;
}

.service-content h3 {
    font-size: 36px;
    margin-bottom: 24px;
}

.service-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-specs {
    margin-bottom: 24px;
}

.spec-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.spec-item strong {
    color: var(--primary-color);
    margin-right: 8px;
}

.price-display {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 24px 0;
}

.price-display span {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-light);
}

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

.included-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.included-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.included-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.included-item svg {
    color: var(--accent-color);
    margin: 0 auto 16px;
}

.included-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.included-item p {
    color: var(--text-light);
    font-size: 15px;
}

.comparison-section {
    padding: 80px 0;
}

.comparison-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-table td {
    color: var(--text-light);
}

.highlight-row {
    background: rgba(255, 107, 53, 0.05);
}

.link-btn {
    color: var(--primary-color);
    font-weight: 600;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

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

.faq-item {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-icon {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.contact-icon svg {
    margin: 0 auto;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.small-text {
    font-size: 14px;
    margin-top: 8px;
}

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

.locations-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 40px;
}

.location-card {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.location-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.location-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 8px;
}

.location-hours {
    margin-top: 16px;
    font-size: 14px;
}

.visit-section {
    padding: 80px 0;
}

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

.directions-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.directions-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    margin-top: 32px;
    color: var(--primary-color);
}

.directions-content h3:first-child {
    margin-top: 0;
}

.directions-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.help-section {
    padding: 80px 0;
}

.help-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 24px;
}

.help-section > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.help-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.help-topic {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
}

.help-topic h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.help-topic p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    color: var(--success-color);
    margin-bottom: 32px;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.selected-box-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.box-name {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.box-price {
    font-size: 20px;
    color: var(--text-light);
}

.next-steps {
    margin-bottom: 60px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.steps-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
}

.step-item {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.thanks-contact {
    font-size: 18px;
    color: var(--text-light);
}

.thanks-contact a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.last-updated {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.legal-page ul,
.legal-page ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-page li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-page strong {
    color: var(--text-dark);
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow);
    }

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

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .hamburger {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 60px 30px;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .split-layout {
        flex-direction: column;
        gap: 40px;
        margin: 60px auto;
    }

    .split-layout.reverse {
        flex-direction: column;
    }

    .content-block h2 {
        font-size: 32px;
    }

    .problem-grid,
    .features-flex,
    .services-grid,
    .testimonials-flex,
    .values-grid,
    .stats-flex,
    .included-grid,
    .help-topics,
    .steps-grid {
        flex-direction: column;
    }

    .form-container {
        padding: 40px 30px;
    }

    .sticky-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .page-hero {
        padding: 80px 20px;
    }

    .hero-content-centered h1 {
        font-size: 36px;
    }

    .hero-content-centered p {
        font-size: 18px;
    }

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

    .thanks-message {
        font-size: 18px;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
}
