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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    border-bottom: 1px solid #ffeaa7;
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 2rem;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

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

.hero-content {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.hero-visual img,
.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-image {
    flex: 1;
    overflow: hidden;
    position: relative;
    background-color: #34495e;
}

.cta-button,
.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.cta-button:hover,
.cta-primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    cursor: pointer;
}

.intro-split {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

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

.intro-image,
.intro-visual {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.intro-image img,
.intro-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-text {
    flex: 1;
    padding: 4rem 3rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.intro-text sup a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.problem-amplification {
    display: flex;
    align-items: stretch;
    background: #ecf0f1;
}

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

.problem-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #e74c3c;
}

.problem-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.problem-visual {
    flex: 1;
    overflow: hidden;
    background-color: #95a5a6;
}

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

.services-section {
    padding: 5rem 3rem;
    background: #ffffff;
    text-align: center;
}

.services-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-intro {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    max-width: 420px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #555;
    font-size: 1rem;
}

.service-card .price {
    padding: 0 1.5rem 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
}

.select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #2980b9;
}

.service-image {
    overflow: hidden;
    height: 240px;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    padding: 1.5rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.service-info p {
    margin-bottom: 1rem;
    color: #555;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

.testimonials-split {
    display: flex;
    align-items: stretch;
    background: #34495e;
}

.testimonial-content {
    flex: 1;
    padding: 4rem 3rem;
    color: #ffffff;
}

.testimonial-content h2 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
}

.testimonial {
    margin-bottom: 2.5rem;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.testimonial cite {
    font-size: 0.95rem;
    opacity: 0.85;
    font-style: normal;
}

.testimonial-image {
    flex: 1;
    overflow: hidden;
    background-color: #2c3e50;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.science-backing {
    padding: 5rem 3rem;
    background: #f8f9fa;
    text-align: center;
}

.science-backing h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.science-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    text-align: left;
}

.science-point {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.science-point h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.science-point p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.science-point sup a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.form-section {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

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

.form-info {
    flex: 1;
    color: #ffffff;
}

.form-info h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.form-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 1rem;
}

.form-wrapper {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    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: #3498db;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #229954;
}

.disclaimer-section {
    padding: 2.5rem 3rem;
    background: #ecf0f1;
    text-align: center;
}

.disclaimer-section p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p,
.footer-section a {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.8;
}

.footer-section a {
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #3498db;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: #3498db;
}

.references {
    list-style: none;
}

.references li {
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
}

.references li a {
    color: #3498db;
    text-decoration: none;
}

.references li a:hover {
    text-decoration: underline;
}

.reference {
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
}

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 2rem auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #95a5a6;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject,
.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept,
.cookie-btn.accept {
    background: #27ae60;
    color: #ffffff;
}

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

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

.cookie-reject:hover,
.cookie-btn.reject:hover {
    background: #ffffff;
    color: #2c3e50;
}

.services-overview {
    padding: 5rem 3rem;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.why-training-split {
    display: flex;
    align-items: stretch;
}

.why-content {
    flex: 1;
    padding: 4rem 3rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.why-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
    line-height: 1.7;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

.form-container > p {
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    margin-top: 2rem;
}

.about-hero,
.services-hero,
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 5rem 3rem;
    text-align: center;
}

.about-hero-content h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero-content p,
.services-hero p,
.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

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

.about-text {
    flex: 1;
    padding: 4rem 3rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.about-visual {
    flex: 1;
    overflow: hidden;
}

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

.philosophy-section {
    padding: 5rem 3rem;
    background: #ffffff;
}

.philosophy-container h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.philosophy-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.philosophy-item {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.philosophy-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

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

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

.values-visual {
    flex: 1;
    overflow: hidden;
}

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

.values-text {
    flex: 1;
    padding: 4rem 3rem;
    background: #ecf0f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.values-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.approach-section {
    padding: 5rem 3rem;
    background: #f8f9fa;
    text-align: center;
}

.approach-section h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.approach-step {
    flex: 1;
    min-width: 240px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

.approach-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.approach-step p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.cta-section {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

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

.service-detail-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-detail-visual {
    flex: 1;
    overflow: hidden;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-content {
    flex: 1;
    padding: 4rem 3rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.booking-cta {
    padding: 5rem 3rem;
    background: #ffffff;
    text-align: center;
}

.booking-cta h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.booking-cta p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #3498db;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #3498db;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

.contact-main {
    padding: 5rem 3rem;
    background: #f8f9fa;
}

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

.contact-info-section h2 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
    text-align: center;
}

.contact-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.contact-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.contact-note {
    padding: 4rem 3rem;
    background: #ffffff;
    text-align: center;
}

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

.note-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.note-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.thanks-section {
    min-height: 70vh;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 12px;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-container h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-container > p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.selected-service-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.selected-service-info p {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 2.5rem;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #34495e;
    text-align: center;
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-content h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #555;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .problem-amplification,
    .testimonials-split,
    .form-container-split,
    .about-split,
    .values-split,
    .service-detail-split,
    .why-training-split {
        flex-direction: column;
    }

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

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 500px;
    }

    .science-content,
    .approach-content {
        flex-direction: column;
    }

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

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