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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c7fb8;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
}

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

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

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

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

.container-split > * {
    flex: 1;
    min-width: 300px;
}

.container-split-reverse {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap-reverse;
    align-items: center;
    gap: 40px;
}

.container-split-reverse > * {
    flex: 1;
    min-width: 300px;
}

.main-nav {
    background-color: var(--background-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-long {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a4d7a 0%, #2c7fb8 100%);
    background-image: url('https://images.unsplash.com/photo-1554224311-beee4ece0715?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 80px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 77, 122, 0.85);
}

.hero-content-long {
    position: relative;
    z-index: 1;
    max-width: 900px;
    color: white;
}

.hero-content-long h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.btn-hero {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-hero:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.curiosity-hook {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.hook-text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.hook-subtext {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

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

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

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

.story-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.problem-amplify {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.problem-amplify h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.stat-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 40px 30px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.stat-card p {
    font-size: 1.1rem;
    line-height: 1.5;
}

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

.insight-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.insight-lead {
    font-size: 1.3rem;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 500;
}

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

.insight-point {
    padding: 30px;
    border-left: 4px solid var(--accent-color);
    background-color: var(--background-light);
}

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

.insight-point p {
    font-size: 1.1rem;
}

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

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

.transformation-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.transform-card {
    flex: 1;
    min-width: 280px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.transform-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.transform-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.transform-card p {
    padding: 0 20px 20px;
    font-size: 1rem;
}

.cta-inline {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-size: 1rem;
}

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

.trust-section {
    padding: 100px 20px;
}

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

.testimonial-block {
    margin-bottom: 40px;
    padding: 40px;
    background-color: var(--background-light);
    border-radius: 8px;
    border-left: 5px solid var(--accent-color);
}

.testimonial-block blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-block cite {
    display: block;
    margin-top: 20px;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

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

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

.method-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.method-visual {
    flex: 1;
    min-width: 300px;
}

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

.method-content {
    flex: 1;
    min-width: 300px;
}

.method-step {
    margin-bottom: 40px;
    padding-left: 80px;
    position: relative;
}

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

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

.method-step p {
    font-size: 1.05rem;
}

.urgency-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    text-align: center;
}

.urgency-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-preview {
    padding: 100px 20px;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-funnel {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.service-funnel-card {
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    transition: all 0.3s;
}

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

.service-funnel-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
    background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
}

.service-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.popular-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 10px;
    margin-bottom: 15px;
}

.service-funnel-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1rem;
}

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

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

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

.btn-select-service:hover {
    background-color: #153d5f;
    transform: translateY(-2px);
}

.guarantee-section {
    padding: 80px 20px;
    background-color: var(--background-light);
    text-align: center;
}

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

.guarantee-section p {
    font-size: 1.15rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.enrollment-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;
    margin-bottom: 50px;
    color: var(--text-light);
}

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

.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 select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.final-push {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a4d7a 0%, #2c7fb8 100%);
    color: white;
    text-align: center;
}

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

.final-push p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.final-emphasis {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.btn-final {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.btn-final:hover {
    background-color: #d35400;
    transform: translateY(-3px);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-sticky {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background-color: #d35400;
    transform: scale(1.05);
}

.site-footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 20px 20px;
}

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

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.95rem;
    color: #bdc3c7;
}

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

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

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bdc3c7;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

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

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

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

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

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

.page-hero {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #1a4d7a 0%, #2c7fb8 100%);
    color: white;
    text-align: center;
}

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

.hero-lead {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.about-story h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-story p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.philosophy-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.philosophy-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.approach-section {
    padding: 100px 20px;
}

.approach-content h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

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

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

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

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

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 0.95rem;
    color: var(--text-light);
}

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

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

.results-section > p {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 50px;
}

.results-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.result-stat {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background-color: var(--background-light);
    border-radius: 8px;
}

.stat-big {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.result-stat p {
    font-size: 1.05rem;
}

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

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

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

.value-item {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

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

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.cta-about {
    padding: 80px 20px;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

.service-detail-card {
    max-width: 900px;
    margin: 0 auto 60px;
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

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

.service-detail-card.premium-service {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.popular-banner {
    background-color: var(--accent-color);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: 700;
}

.service-header {
    padding: 40px;
    background-color: var(--background-light);
    text-align: center;
}

.service-age-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-header h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-price-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-body {
    padding: 40px;
}

.service-overview {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
}

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

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

.detailed-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.05rem;
}

.detailed-list li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.5rem;
}

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

.comparison-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.comparison-guide {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-item {
    flex: 1;
    min-width: 220px;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.comparison-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.comparison-item p {
    font-size: 1rem;
}

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

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

.enrollment-section > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: var(--text-light);
}

.contact-content {
    padding: 60px 20px;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 40px;
}

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

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

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

.contact-map {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(26, 77, 122, 0.9);
    color: white;
}

.map-overlay p {
    margin: 0;
    font-size: 1rem;
}

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

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

.faq-item {
    margin-bottom: 30px;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
}

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

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-cta {
    padding: 80px 20px;
    text-align: center;
}

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

.contact-cta p {
    font-size: 1.15rem;
    margin-bottom: 40px;
}

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

.thanks-hero {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

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

.thanks-subtitle {
    font-size: 1.3rem;
}

.thanks-content {
    padding: 80px 20px;
}

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

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

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

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

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--success-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.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.thanks-details {
    margin-bottom: 40px;
}

.selected-service-display {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
}

.thanks-additional {
    margin-bottom: 40px;
}

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

.thanks-additional > p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.prep-list {
    list-style: none;
    padding: 0;
}

.prep-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
}

.prep-list li:before {
    content: "→";
    position: absolute;
    left: 10px;
    color: var(--accent-color);
    font-weight: 700;
}

.thanks-contact {
    text-align: center;
    padding: 30px;
    background-color: var(--background-light);
    border-radius: 8px;
}

.thanks-contact p {
    font-size: 1.1rem;
}

.thanks-contact a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.legal-content {
    padding: 60px 20px 80px;
}

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

.legal-date {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

.legal-content ul,
.legal-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

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

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

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

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

.cookies-table th {
    background-color: var(--background-light);
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .transformation-grid,
    .team-grid {
        flex-direction: column;
    }

    .method-layout {
        flex-direction: column;
    }

    .method-visual {
        order: -1;
    }

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

    .step-number {
        margin: 0 auto 20px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .btn-sticky {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content-long h1 {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-funnel-card {
        padding: 25px;
    }

    .service-price {
        font-size: 2rem;
    }
}