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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

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

.hidden {
    display: none !important;
}

.main-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 15px;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    display: block;
    transition: var(--transition);
}

.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-card-wrapper {
    display: flex;
    justify-content: center;
}

.hero-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    width: 100%;
}

.hero-content {
    padding: 48px;
}

.hero-label {
    display: inline-block;
    background-color: #ede9fe;
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.hero-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

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

.intro-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.intro-card.highlight-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.intro-card.highlight-card h3,
.intro-card.highlight-card p {
    color: var(--white);
}

.card-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-card.highlight-card .card-icon {
    color: var(--white);
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-dark);
}

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

.why-python-section {
    padding: 80px 0;
}

.section-header-card {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    background-color: var(--bg-gray);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header-card h2 {
    font-size: 36px;
    color: var(--text-dark);
    font-weight: 800;
}

.content-split {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

.content-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.visual-stats {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.stat-item {
    flex: 1;
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
}

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

.methodology-wrapper {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

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

.methodology-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 800;
}

.method-cards-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-card {
    background: var(--white);
    padding: 28px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
}

.method-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.method-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    flex-shrink: 0;
}

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

.method-text p {
    color: var(--text-gray);
    line-height: 1.7;
}

.methodology-image {
    flex: 0 0 400px;
    min-width: 300px;
}

.methodology-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.testimonials-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 800;
}

.testimonials-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: var(--transition);
}

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

.testimonial-card.featured {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
}

.testimonial-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 16px;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 16px;
}

.author-role {
    font-size: 14px;
    color: var(--text-gray);
}

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

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-centered h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 800;
}

.section-header-centered p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.7;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 320px;
    background: var(--white);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

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

.service-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #10b981;
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-header {
    margin-bottom: 20px;
}

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

.service-duration {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

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

.service-description p {
    color: var(--text-gray);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
}

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

.service-pricing {
    margin-bottom: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.price {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.price-note {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
}

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

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

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

.cta-section-inline {
    padding: 60px 0;
}

.cta-card-inline {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 48px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-lg);
}

.cta-content {
    flex: 1;
    min-width: 280px;
}

.cta-content h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.btn-cta-light {
    background-color: var(--white);
    color: var(--primary-color);
    flex-shrink: 0;
}

.btn-cta-light:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

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

.booking-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.booking-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 800;
}

.booking-info > p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.benefit-item svg {
    flex-shrink: 0;
    color: var(--secondary-color);
}

.benefit-item span {
    color: var(--text-gray);
    line-height: 1.6;
}

.booking-form-card {
    flex: 1;
    min-width: 320px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-group label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-note {
    font-size: 14px;
    color: var(--text-gray);
    text-align: center;
    margin-top: -8px;
}

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

.section-title-centered {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 800;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.faq-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    background: var(--white);
    padding: 28px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.faq-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.final-cta-section {
    padding: 80px 0;
}

.final-cta-card {
    text-align: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.final-cta-card h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 800;
}

.final-cta-card p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-column h4,
.footer-column h5 {
    margin-bottom: 16px;
    color: var(--white);
    font-weight: 700;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 14px;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 16px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.sticky-cta-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.btn-sticky {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 24px;
    z-index: 10000;
}

.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 {
    flex: 1;
    min-width: 280px;
    color: var(--text-gray);
    line-height: 1.6;
}

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

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
}

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

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

.btn-reject {
    background-color: var(--bg-gray);
    color: var(--text-dark);
}

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

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

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

.page-hero-content h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

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

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.story-content p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 17px;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.value-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.team-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

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

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.team-info {
    padding: 28px;
}

.team-info h3 {
    font-size: 22px;
    margin-bottom: 4px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.team-info p {
    color: var(--text-gray);
    line-height: 1.7;
}

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

.stats-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-number-large {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label-large {
    display: block;
    font-size: 16px;
    color: var(--text-gray);
}

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

.approach-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-image {
    flex: 1;
    min-width: 300px;
}

.approach-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--text-dark);
    font-weight: 800;
}

.approach-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.approach-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

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

.cta-card-centered h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 800;
}

.cta-card-centered p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.courses-filter-section {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.filter-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 600;
    color: var(--text-dark);
}

.filter-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--bg-gray);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    color: var(--text-dark);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

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

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

.service-detail-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.service-badge-level {
    display: inline-block;
    background-color: #10b981;
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin: 24px 0 0 24px;
}

.service-badge-level.featured {
    background-color: #f59e0b;
}

.service-badge-level.special {
    background-color: #8b5cf6;
}

.service-detail-header {
    padding: 24px 36px;
}

.service-detail-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 800;
}

.service-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--text-gray);
    font-size: 14px;
}

.meta-item svg {
    color: var(--primary-color);
}

.service-detail-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

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

.intro-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 500;
}

.service-detail-content h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.learning-list {
    list-style: none;
    margin-bottom: 24px;
}

.learning-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.7;
}

.learning-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.price-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    margin: 32px 0;
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
    font-weight: 600;
}

.price-large {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-includes {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
}

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

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

.comparison-table {
    width: 100%;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table thead {
    background-color: var(--primary-color);
    color: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:hover {
    background-color: var(--bg-light);
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.badge-green {
    background-color: #d1fae5;
    color: #065f46;
}

.badge-blue {
    background-color: #dbeafe;
    color: #1e40af;
}

.badge-purple {
    background-color: #ede9fe;
    color: #5b21b6;
}

.badge-orange {
    background-color: #fed7aa;
    color: #92400e;
}

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

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

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

.contact-info-side {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: var(--white);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-card h2,
.contact-card h3 {
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.contact-method {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.method-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.method-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.method-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.method-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
}

.method-details a:hover {
    text-decoration: underline;
}

.method-details p {
    margin: 0;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.quick-links a:hover {
    text-decoration: underline;
}

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

.visual-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.visual-card img {
    width: 100%;
    display: block;
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 32px;
}

.overlay-content h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 700;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

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

.map-section {
    padding: 60px 0;
}

.map-placeholder {
    background: var(--bg-light);
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
}

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

.map-content svg {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 700;
}

.map-content p {
    color: var(--text-gray);
}

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

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.thanks-icon {
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 800;
}

.thanks-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.thanks-content {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-info-box {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.thanks-info-box h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 24px;
}

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

.step-text strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 16px;
}

.step-text p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 15px;
}

.thanks-highlight {
    background: var(--white);
    border: 2px solid var(--primary-color);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.thanks-highlight h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-highlight p {
    color: var(--text-gray);
    line-height: 1.7;
}

.thanks-contact {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
}

.thanks-contact h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.thanks-contact p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 8px;
}

.thanks-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

.preparation-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.prep-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.prep-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.legal-page {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 800;
}

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

.legal-content {
    background: var(--white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    margin: 24px 0 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-gray);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-gray);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

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

.legal-back {
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

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

    .main-nav li:last-child {
        border-bottom: none;
    }

    .hero-card {
        flex-direction: column;
    }

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

    .hero-content {
        padding: 32px 24px;
    }

    .content-split,
    .methodology-wrapper,
    .story-layout,
    .approach-layout,
    .booking-wrapper,
    .contact-layout {
        flex-direction: column;
    }

    .methodology-image {
        flex: auto;
        order: -1;
    }

    .service-card,
    .faq-card,
    .value-card,
    .team-card {
        flex: 1 1 100%;
    }

    .cta-card-inline {
        flex-direction: column;
        text-align: center;
    }

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

    .cookie-content {
        flex-direction: column;
    }

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

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

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

    .legal-content {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .intro-grid,
    .values-grid,
    .testimonials-grid,
    .services-grid,
    .visual-stats {
        flex-direction: column;
    }

    .intro-card,
    .value-card,
    .testimonial-card,
    .service-card {
        min-width: 100%;
    }

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

    .section-header-card h2,
    .section-header-centered h2,
    .section-title-centered {
        font-size: 28px;
    }

    .final-cta-card h2 {
        font-size: 32px;
    }

    .btn {
        width: 100%;
    }

    .filter-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-buttons {
        width: 100%;
    }

    .filter-btn {
        flex: 1;
    }
}