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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

.nav-minimal {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    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;
    min-height: 70px;
}

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

.nav-menu {
    display: none;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.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(--secondary-color);
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-7px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -6px);
}

.hero-immersive {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    padding: 40px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    color: white;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 18px 40px;
    background: var(--secondary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

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

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 40px;
    line-height: 1.6;
}

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

.split-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.emphasis {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-top: 30px;
}

.split-image {
    flex: 1;
    width: 100%;
}

.split-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.insight-reveal p {
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.95;
}

.quote-block {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-left: 5px solid var(--accent-color);
    margin: 40px 0;
}

.quote-block p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
}

.quote-author {
    display: block;
    text-align: right;
    font-size: 1rem;
    opacity: 0.8;
}

.method-explanation {
    padding: 100px 20px;
    background: var(--bg-white);
}

.method-explanation h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.method-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.method-icon {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.method-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.trust-building {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.trust-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.trust-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.trust-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonials-inline {
    padding: 80px 20px;
    background: var(--bg-white);
}

.testimonial {
    background: var(--bg-light);
    padding: 35px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
    border-radius: 5px;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
}

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

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

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

.benefit-icon {
    font-size: 2rem;
    color: var(--success-color);
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.benefit-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-mid {
    padding: 80px 20px;
    background: var(--accent-color);
    text-align: center;
    color: white;
}

.cta-mid h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.cta-mid p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    padding: 20px 50px;
    background: white;
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

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

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

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

.service-card {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card.featured {
    border: 3px solid var(--accent-color);
    background: linear-gradient(135deg, #fff 0%, #fef9f3 100%);
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-duration {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-content {
    flex: 1;
    margin-bottom: 25px;
}

.service-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.btn-select-service {
    width: 100%;
    padding: 15px 30px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

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

.form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.registration-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

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

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

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    line-height: 1.6;
}

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

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

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.urgency-element {
    padding: 60px 20px;
    background: var(--bg-white);
}

.urgency-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.urgency-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.urgency-box p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.final-cta {
    padding: 100px 20px;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-button-outline {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: white;
    border: 3px solid white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button-outline:hover {
    background: white;
    color: var(--primary-color);
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-col p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 999;
    display: none;
}

.sticky-cta-btn {
    display: block;
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.cookie-content a {
    color: var(--accent-color);
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.btn-cookie-reject:hover {
    background: white;
    color: #000;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
}

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

.lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-story {
    padding: 100px 20px;
    background: var(--bg-white);
}

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

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

.team {
    padding: 100px 20px;
    background: var(--bg-white);
}

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

.team-member {
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-light);
}

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

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.team-role {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

.facilities-content {
    margin-top: 40px;
}

.facilities-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-section {
    padding: 80px 20px;
    background: var(--accent-color);
    text-align: center;
    color: white;
}

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

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.services-overview {
    padding: 60px 20px;
    background: var(--bg-white);
}

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

.service-item {
    margin-bottom: 50px;
}

.service-content-detailed {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

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

.service-header-detailed h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.meta-item {
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 5px 15px;
    background: var(--bg-light);
    border-radius: 20px;
}

.service-description h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.service-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.detailed-list {
    list-style: none;
    margin: 20px 0;
}

.detailed-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.detailed-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.service-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

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

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

.location-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.location-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.address {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.hours {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-method {
    margin-bottom: 30px;
}

.contact-method h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-method p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-method a {
    color: var(--secondary-color);
    font-weight: 600;
}

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

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.thanks-hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thanks-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.thanks-details {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.service-confirmation {
    color: white;
}

.selected-service-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 15px 0;
}

.selected-service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

.thanks-info {
    background: white;
    color: var(--text-dark);
    padding: 40px;
    border-radius: 10px;
    margin: 50px 0;
    text-align: left;
}

.thanks-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-tips {
    background: white;
    color: var(--text-dark);
    padding: 40px;
    border-radius: 10px;
    margin: 30px 0;
}

.thanks-tips h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-tips ul {
    list-style: none;
}

.thanks-tips li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
}

.thanks-tips li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

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

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

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

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

.contact-support {
    padding: 60px 20px;
    background: var(--bg-white);
    text-align: center;
}

.contact-support h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-support p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-email {
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-email a {
    color: var(--secondary-color);
}

.legal-content {
    padding: 80px 20px;
    background: var(--bg-white);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 1.2rem;
    margin: 25px 0 10px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0 20px 20px;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

    .hamburger {
        display: none;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .split-content {
        flex-direction: row;
    }

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

    .method-card {
        flex: 1;
        min-width: 280px;
    }

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

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

    .footer-col {
        flex: 1;
    }

    .sticky-cta {
        display: block;
    }

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

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

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

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

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .team-member {
        flex: 0 0 calc(50% - 20px);
    }

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

    .contact-locations,
    .contact-details {
        flex: 1;
    }

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

    .faq-item {
        flex: 0 0 calc(50% - 15px);
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 20px);
    }

    .team-member {
        flex: 0 0 calc(25% - 30px);
    }
}