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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2d7ac7;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-visual {
    flex: 1;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-split h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-split p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 540px;
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #e55a28;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.intro-split {
    display: flex;
    align-items: center;
}

.intro-visual {
    flex: 1;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 500px;
}

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

.intro-content {
    flex: 1;
    padding: 4rem 5rem 4rem 3rem;
}

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

.intro-split.reverse .intro-content {
    padding: 4rem 3rem 4rem 5rem;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats-section {
    background: var(--primary-color);
    padding: 4rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat-item {
    text-align: center;
    color: var(--bg-white);
}

.stat-item h3 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

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

.services-preview {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.service-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

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

.service-content {
    padding: 2.5rem;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

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

.price-tag {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-service {
    width: 100%;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonial-split {
    display: flex;
    background: var(--bg-light);
    align-items: center;
}

.testimonial-content {
    flex: 1;
    padding: 4rem 5rem 4rem 3rem;
}

.testimonial-visual {
    flex: 1;
    min-height: 450px;
    overflow: hidden;
}

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

blockquote {
    position: relative;
    padding: 2rem 0;
}

blockquote p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
}

blockquote footer {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: normal;
}

.expertise-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.expertise-visual {
    flex: 1;
    min-height: 550px;
    overflow: hidden;
}

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

.expertise-content {
    flex: 1;
    padding: 4rem 5rem 4rem 3rem;
}

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

.expertise-split.reverse .expertise-content {
    padding: 4rem 3rem 4rem 5rem;
}

.expertise-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.expertise-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.workflow-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.workflow-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.workflow-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.workflow-step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    padding: 2rem 1.5rem;
}

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

.workflow-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.cta-split {
    display: flex;
    background: var(--bg-light);
    align-items: center;
    padding: 4rem 3rem;
}

.cta-content {
    flex: 1;
    padding-right: 3rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.cta-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

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

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

.cta-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

.contact-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge {
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    color: var(--primary-color);
    font-weight: 600;
}

.form-wrapper {
    flex: 1;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.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(26, 84, 144, 0.1);
}

.cta-submit {
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.site-footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

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

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

.story-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.story-visual {
    flex: 1;
    min-height: 500px;
    overflow: hidden;
}

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

.story-content {
    flex: 1;
    padding: 4rem 5rem 4rem 3rem;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.mission-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.mission-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.mission-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.team-split {
    display: flex;
    align-items: center;
    background: var(--bg-white);
}

.team-content {
    flex: 1;
    padding: 4rem 5rem 4rem 3rem;
}

.team-visual {
    flex: 1;
    min-height: 500px;
    overflow: hidden;
}

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

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

.team-split.reverse .team-content {
    padding: 4rem 3rem 4rem 5rem;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.team-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.instructor-highlight {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.instructor-highlight h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.stat-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.facilities-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.facilities-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.facilities-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.facility-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.facility-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.facility-item h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 0.8rem;
    color: var(--text-dark);
}

.facility-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

.partners-split {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    padding: 5rem 0;
}

.partners-visual {
    flex: 1;
    min-height: 450px;
    overflow: hidden;
}

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

.partners-content {
    flex: 1;
    padding: 4rem 5rem 4rem 3rem;
}

.partners-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.partners-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.values-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.values-content {
    flex: 1;
    padding: 4rem 5rem 4rem 3rem;
}

.values-visual {
    flex: 1;
    min-height: 500px;
    overflow: hidden;
}

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

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

.values-split.reverse .values-content {
    padding: 4rem 3rem 4rem 5rem;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.values-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.certification-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.certification-list li {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 6px;
    font-weight: 600;
    color: var(--primary-color);
}

.cta-simple {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--primary-color);
    color: var(--bg-white);
}

.cta-simple h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-simple p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-simple .cta-primary {
    background: var(--accent-color);
}

.services-intro-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background: var(--bg-white);
}

.service-detail-section {
    padding: 3rem 2rem;
    background: var(--bg-light);
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 4rem;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.service-detail-split {
    display: flex;
    align-items: stretch;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1.2;
    padding: 4rem 4rem 4rem 3rem;
}

.service-detail-visual {
    flex: 0.8;
    min-height: 550px;
    overflow: hidden;
}

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

.service-tagline {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.service-info {
    margin-bottom: 3rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.service-info p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-info ul {
    margin-top: 1rem;
}

.service-info ul li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    color: var(--text-light);
    position: relative;
}

.service-info ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.course-details {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.course-details li {
    padding: 0.5rem 0;
}

.price-section {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.price-display {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-note {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.comparison-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.comparison-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.comparison-col {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
}

.comparison-col h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.comparison-col p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.comparison-col ul {
    text-align: left;
}

.comparison-col li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.benefits-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background: var(--bg-light);
}

.benefits-content {
    flex: 1;
    padding: 4rem 5rem 4rem 3rem;
}

.benefits-visual {
    flex: 1;
    min-height: 500px;
    overflow: hidden;
}

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

.benefits-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list li {
    padding: 1.2rem 1.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    color: var(--text-dark);
    position: relative;
    padding-left: 3rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.contact-info-split {
    display: flex;
    align-items: flex-start;
    padding: 5rem 0;
}

.info-content {
    flex: 1;
    padding: 4rem 5rem 4rem 3rem;
}

.info-visual {
    flex: 1;
    min-height: 500px;
    overflow: hidden;
}

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

.info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

.contact-detail a {
    color: var(--primary-color);
    text-decoration: underline;
}

.note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.location-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.location-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.location-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.location-content {
    flex: 1;
}

.location-content h3 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.location-content h3:first-of-type {
    margin-top: 0;
}

.location-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.location-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.faq-split {
    display: flex;
    align-items: flex-start;
    padding: 5rem 0;
}

.faq-visual {
    flex: 1;
    min-height: 500px;
    overflow: hidden;
}

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

.faq-content {
    flex: 1;
    padding: 4rem 5rem 4rem 3rem;
}

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

.faq-split.reverse .faq-content {
    padding: 4rem 3rem 4rem 5rem;
}

.faq-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.faq-item {
    margin-bottom: 2rem;
}

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

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

.thanks-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    text-align: center;
    padding: 4rem 2rem;
}

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

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

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.lead {
    font-size: 1.3rem;
    color: var(--text-light);
}

.thanks-details {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.thanks-info {
    max-width: 900px;
    margin: 0 auto;
}

.thanks-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.thanks-selected-service {
    padding: 3rem 2rem;
    background: var(--bg-light);
}

.service-confirmation {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.service-confirmation h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.selected-service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-confirmation p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.thanks-resources {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.thanks-resources h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.resource-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
}

.resource-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.resource-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.thanks-contact-info {
    padding: 3rem 2rem;
    background: var(--bg-light);
}

.contact-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
}

.contact-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-box p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

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

.legal-page {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.last-updated {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

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

.legal-container ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-container li {
    list-style: disc;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

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

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

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .testimonial-split,
    .expertise-split,
    .cta-split,
    .form-container-split,
    .story-split,
    .team-split,
    .partners-split,
    .values-split,
    .services-intro-split,
    .service-detail-split,
    .benefits-split,
    .contact-info-split,
    .location-split,
    .faq-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .expertise-split.reverse,
    .team-split.reverse,
    .values-split.reverse,
    .service-detail-split.reverse,
    .faq-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .expertise-content,
    .story-content,
    .team-content,
    .partners-content,
    .values-content,
    .service-detail-content,
    .benefits-content,
    .info-content,
    .faq-content {
        padding: 3rem 2rem;
    }

    .intro-split.reverse .intro-content,
    .expertise-split.reverse .expertise-content,
    .team-split.reverse .team-content,
    .values-split.reverse .values-content,
    .faq-split.reverse .faq-content {
        padding: 3rem 2rem;
    }

    .hero-visual,
    .intro-visual,
    .expertise-visual,
    .story-visual,
    .team-visual,
    .partners-visual,
    .values-visual,
    .service-detail-visual,
    .benefits-visual,
    .info-visual,
    .faq-visual {
        min-height: 350px;
    }

    .hero-split h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .cta-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .testimonial-content {
        padding: 3rem 2rem;
    }
}

@media (max-width: 640px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-split h1 {
        font-size: 1.8rem;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}
