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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
}

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(--bg-white);
}

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

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

.nav-items {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

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

.ad-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    border-left: 1px solid var(--border-color);
    padding-left: 20px;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    position: relative;
}

.hero-content-offset {
    width: 55%;
    padding-right: 60px;
    padding-left: 100px;
}

.hero-title-large {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-visual-block {
    position: absolute;
    right: 50px;
    top: 150px;
    width: 40%;
    height: 70vh;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.cta-secondary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.intro-offset {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-text-wide {
    flex: 2;
    padding-left: 100px;
}

.intro-text-wide h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.intro-text-wide p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-highlight-card {
    flex: 1;
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
}

.highlight-number {
    display: block;
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
}

.intro-highlight-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.content-irregular {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    align-items: center;
}

.irregular-left {
    flex: 1;
    padding-left: 50px;
}

.irregular-left h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.irregular-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.irregular-right-image {
    flex: 1;
    position: relative;
    top: -60px;
}

.irregular-right-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

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

.section-title-offset {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 80px;
    padding-left: 120px;
}

.services-grid-asymmetric {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 50px;
}

.service-card {
    background: white;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-large {
    flex: 1 1 calc(60% - 20px);
}

.card-medium {
    flex: 1 1 calc(50% - 20px);
}

.card-small {
    flex: 1 1 calc(38% - 20px);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    flex: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    white-space: nowrap;
}

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

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

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.service-features li:last-child {
    border-bottom: none;
}

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

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

.testimonial-overlap {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.testimonial-content {
    flex: 1;
    padding: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-content blockquote {
    font-size: 1.4rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-content cite {
    display: block;
    margin-top: 25px;
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
}

.testimonial-image-offset {
    flex: 1;
    position: relative;
    left: -40px;
}

.testimonial-image-offset img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.methodology-split {
    display: flex;
    max-width: 1500px;
    margin: 120px auto;
    padding: 0 20px;
    gap: 80px;
}

.methodology-visual {
    flex: 0.9;
}

.methodology-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.methodology-text {
    flex: 1.1;
    padding: 60px 40px;
}

.methodology-text h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.methodology-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.methodology-points {
    margin-top: 50px;
}

.point-item {
    margin-bottom: 35px;
}

.point-item h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.point-item p {
    color: var(--text-light);
    font-size: 1rem;
}

.cta-inline-offset {
    text-align: center;
    padding: 100px 20px;
    background: var(--bg-light);
    margin: 0 100px;
    border-radius: 30px;
}

.cta-inline-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-inline-offset p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.portfolio-showcase {
    padding: 120px 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.portfolio-showcase h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 800;
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.item-wide {
    flex: 1 1 55%;
}

.item-tall {
    flex: 1 1 calc(42% - 15px);
}

.item-medium {
    flex: 1 1 calc(48% - 15px);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 30px 25px 20px;
    font-size: 1.1rem;
}

.instructor-profile {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 20px;
    gap: 70px;
    align-items: center;
}

.instructor-image-float {
    flex: 0.8;
    position: relative;
    top: -40px;
}

.instructor-image-float img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.instructor-bio {
    flex: 1.2;
}

.instructor-bio h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.instructor-bio p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.form-container-offset {
    max-width: 800px;
    margin: 120px auto 120px 150px;
    padding: 0 20px;
}

.form-wrapper {
    background: white;
    padding: 70px 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    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 {
    background: var(--primary-color);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
}

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

.disclaimer-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 50px 80px;
    background: var(--bg-light);
    border-left: 5px solid var(--accent-color);
}

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

.footer-asymmetric {
    background: var(--text-dark);
    color: white;
    padding: 80px 20px 40px;
    margin-top: 120px;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-block {
    flex: 1;
}

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

.footer-block p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-block ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

.sticky-cta-button {
    background: var(--accent-color);
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    transition: all 0.3s;
    display: inline-block;
}

.sticky-cta-button:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 25px 40px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

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

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

.btn-accept {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-reject {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-reject:hover {
    border-color: var(--text-dark);
}

.page-hero-offset {
    padding: 180px 20px 80px 150px;
    max-width: 1200px;
}

.page-hero-offset h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-lead {
    font-size: 1.4rem;
    color: var(--text-light);
    line-height: 1.7;
}

.service-detail {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
}

.service-detail-alternate {
    margin-left: auto;
    margin-right: 100px;
}

.service-detail-content {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-detail-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.price-tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 800;
    padding: 15px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

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

.service-detail-content h3 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    font-weight: 700;
}

.module-list {
    list-style: none;
    margin-bottom: 40px;
}

.module-list li {
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.05rem;
    color: var(--text-dark);
}

.cta-full-width {
    text-align: center;
    padding: 100px 20px;
    background: var(--primary-color);
    color: white;
    margin: 120px 0;
}

.cta-full-width h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-full-width p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.about-hero {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 150px 20px 80px;
    gap: 80px;
    align-items: center;
}

.about-hero-text {
    flex: 1;
    padding-left: 80px;
}

.about-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-hero-text p {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about-hero-image {
    flex: 1;
}

.about-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.story-section {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 20px;
}

.story-section h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    font-weight: 700;
}

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

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

.values-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 80px;
    font-weight: 800;
}

.values-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-card {
    flex: 1 1 calc(50% - 20px);
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
}

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

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

.team-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 20px;
}

.team-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
}

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

.team-members {
    display: flex;
    gap: 50px;
    margin-top: 60px;
}

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

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

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

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

.approach-section {
    display: flex;
    max-width: 1500px;
    margin: 120px auto;
    padding: 0 20px;
    gap: 90px;
    align-items: center;
}

.approach-image {
    flex: 0.9;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.approach-text {
    flex: 1.1;
}

.approach-text h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.approach-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.stats-section {
    padding: 100px 20px;
    background: var(--text-dark);
    color: white;
    text-align: center;
}

.stats-section h2 {
    font-size: 3rem;
    margin-bottom: 80px;
    font-weight: 800;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.stat-item {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.cta-about h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-hero {
    padding: 150px 20px 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.contact-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-main {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.contact-info-blocks {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
}

.contact-block {
    flex: 1;
}

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
}

.note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 15px;
    font-style: italic;
}

.contact-additional {
    max-width: 800px;
    margin: 0 auto;
}

.contact-additional h2 {
    font-size: 2.2rem;
    margin: 60px 0 25px;
    font-weight: 700;
}

.contact-additional p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.faq-list {
    margin-top: 40px;
}

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

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

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.contact-location {
    max-width: 800px;
    margin: 80px auto;
    padding: 60px;
    background: var(--bg-light);
    border-radius: 20px;
    text-align: center;
}

.contact-location h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-location p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.service-confirmation {
    background: var(--bg-light);
    padding: 20px 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.service-selected {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.thanks-secondary {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    padding: 14px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--text-dark);
}

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

.next-steps h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 50px;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    font-size: 2rem;
    font-weight: 800;
    border-radius: 50%;
    line-height: 70px;
    margin-bottom: 25px;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

.testimonial-thanks {
    max-width: 900px;
    margin: 80px auto;
    padding: 60px;
    background: var(--bg-light);
    border-radius: 20px;
    text-align: center;
}

.testimonial-thanks blockquote {
    font-size: 1.4rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-thanks cite {
    display: block;
    margin-top: 25px;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 150px 20px 80px;
}

.legal-page h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 50px;
    font-style: italic;
}

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

.legal-page h2 {
    font-size: 2rem;
    margin: 50px 0 20px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.5rem;
    margin: 35px 0 15px;
    font-weight: 600;
}

.legal-page h4 {
    font-size: 1.2rem;
    margin: 25px 0 12px;
    font-weight: 600;
}

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

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

.legal-page ul li {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: none;
}

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

@media (max-width: 1200px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        width: 100%;
        padding: 0 40px;
    }

    .hero-visual-block {
        position: relative;
        width: 90%;
        right: auto;
        top: auto;
        margin-top: 50px;
    }

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

@media (max-width: 768px) {
    .nav-floating {
        left: 20px;
        right: 20px;
        transform: none;
        padding: 15px 25px;
        gap: 20px;
    }

    .nav-items {
        gap: 15px;
        font-size: 0.9rem;
    }

    .hero-title-large {
        font-size: 2.5rem;
    }

    .services-grid-asymmetric {
        flex-direction: column;
        padding: 0 20px;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 1 100%;
    }

    .intro-offset,
    .content-irregular,
    .methodology-split,
    .instructor-profile,
    .about-hero,
    .approach-section {
        flex-direction: column;
    }

    .testimonial-overlap {
        flex-direction: column;
    }

    .team-members {
        flex-direction: column;
    }

    .contact-info-blocks,
    .steps-grid,
    .stats-grid,
    .values-grid {
        flex-direction: column;
    }

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

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