/* Consulting Page Specific Styles - Following Home Page Design */
.consulting-hero-section {
    background: linear-gradient(135deg,
            rgba(249, 250, 251, 0.9) 0%,
            rgba(243, 244, 246, 0.9) 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 0;
    border: none;
    box-shadow: none;
}

.consulting-hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3;
}

.consulting-section-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.consulting-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: #1d4ed8;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.consulting-main-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: #1f2937;
    opacity: 1;
    transform: translateY(0);
}

.consulting-subtitle {
    font-size: 1.5rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.consulting-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.consulting-btn-primary,
.consulting-btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.consulting-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: 2px solid transparent;
}

.consulting-btn-primary:hover {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.consulting-btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.consulting-btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.consulting-services-section {
    padding: 8rem 0;
    background: var(--bg-secondary, #f8fafc);
    border: none;
    box-shadow: none;
}

html[data-theme="dark"] .consulting-services-section {
    background: var(--bg-secondary, #1e293b);
}

.consulting-section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary, #64748b);
    max-width: 600px;
    margin: 0 auto;
}

.consulting-section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color, #e2e8f0), transparent);
    margin: 4rem 0;
}

html[data-theme="dark"] .consulting-section-divider {
    background: linear-gradient(90deg, transparent, var(--border-color, #334155), transparent);
}

.consulting-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

.consulting-process-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color, #e5e7eb);
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}

html[data-theme="dark"] .consulting-process-card {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.consulting-process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

html[data-theme="dark"] .consulting-process-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: #60a5fa;
}

.consulting-process-number {
    position: absolute;
    top: -15px;
    right: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.consulting-process-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary, #1f2937);
    margin-bottom: 1rem;
    padding-right: 3rem;
}

html[data-theme="dark"] .consulting-process-title {
    color: var(--text-primary, #f3f4f6);
}

.consulting-process-description {
    font-size: 1rem;
    color: var(--text-secondary, #6b7280);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

html[data-theme="dark"] .consulting-process-description {
    color: var(--text-secondary, #d1d5db);
}

.consulting-process-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.consulting-process-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary, #6b7280);
    position: relative;
    padding-left: 1.5rem;
}

.consulting-process-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

html[data-theme="dark"] .consulting-process-features li {
    color: var(--text-secondary, #d1d5db);
}

.consulting-results-note {
    text-align: center;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 3rem;
    border-radius: 16px;
    margin-top: 3rem;
}

html[data-theme="dark"] .consulting-results-note {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
}

.consulting-results-note h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary, #1f2937);
    margin-bottom: 1rem;
}

html[data-theme="dark"] .consulting-results-note h3 {
    color: var(--text-primary, #f3f4f6);
}

.consulting-results-note p {
    font-size: 1.125rem;
    color: var(--text-secondary, #6b7280);
    line-height: 1.6;
}

html[data-theme="dark"] .consulting-results-note p {
    color: var(--text-secondary, #d1d5db);
}

.consulting-courses-section {
    padding: 4rem 0;
    background: var(--bg-primary, #ffffff);
}

html[data-theme="dark"] .consulting-courses-section {
    background: var(--bg-primary, #0f172a);
}

.consulting-courses-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.consulting-courses-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary, #1f2937);
    margin-bottom: 1rem;
}

html[data-theme="dark"] .consulting-courses-main-title {
    color: var(--text-primary, #f3f4f6);
}

.consulting-courses-main-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary, #64748b);
    max-width: 600px;
    margin: 0 auto;
}

html[data-theme="dark"] .consulting-courses-main-subtitle {
    color: var(--text-secondary, #94a3b8);
}

.consulting-contact-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.consulting-contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.consulting-contact-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.consulting-contact-cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.consulting-contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .consulting-hero-section {
        padding: 6rem 0 4rem;
    }

    .consulting-main-title {
        font-size: 2.5rem;
    }

    .consulting-main-subtitle {
        font-size: 1.125rem;
    }

    .consulting-section-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .consulting-process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .consulting-process-card {
        padding: 2rem;
    }

    .consulting-process-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .consulting-process-title {
        font-size: 1.25rem;
        padding-right: 2.5rem;
    }
}

/* Tab Styles */
.consulting-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #e5e7eb;
    color: #6b7280;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tab-button:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.tab-button.active {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-color: transparent;
}

.tab-content-container {
    min-height: 600px;
    border: none;
    background: transparent;
    box-shadow: none;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    border: none;
    background: transparent;
    box-shadow: none;
}

.tab-content.active {
    display: block;
}

.tab-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    min-height: 400px;
    border: none;
    background: transparent;
    box-shadow: none;
}

/* Alternating layout patterns */
.tab-layout.content-left {
    grid-template-areas: "content visual";
}

.tab-layout.content-right {
    grid-template-areas: "visual content";
}

.tab-text-section {
    grid-area: content;
    text-align: left;
}

.tab-visual-section {
    grid-area: visual;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab-text-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: left;
}

.tab-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: left;
}

.tab-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-start;
}

.tab-btn-primary,
.tab-btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tab-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: 2px solid transparent;
}

.tab-btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.tab-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.tab-btn-secondary:hover {
    background: #3b82f6;
    color: white;
}

/* Visual Sections - Now enabled for two-column layout */

.assessment-visual {
    width: 100%;
    max-width: 400px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.capability-item {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: #475569;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.capability-item:hover {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1d4ed8;
}

.education-visual {
    width: 100%;
    max-width: 450px;
}

.thinking-comparison {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.thinking-type {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
    width: 100%;
}

.thinking-type.analytical {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.thinking-type.systems {
    border-color: #10b981;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.thinking-type h4 {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.vs-divider {
    font-weight: 800;
    font-size: 1.5rem;
    color: #6b7280;
    margin: 1rem 0;
}

.planning-visual,
.execution-visual {
    width: 100%;
    max-width: 400px;
}

.planning-features,
.execution-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item h4 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #6b7280;
    font-size: 0.9rem;
}

.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    flex-shrink: 0;
}

.timeline-content h5 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: #6b7280;
    font-size: 0.9rem;
}

.metrics-dashboard {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.metric-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.metric-card h5 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.metric-progress {
    background: #f1f5f9;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Results Section */
.consulting-results-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    margin: 4rem 0;
}

.results-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.results-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.results-description {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.results-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.result-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.result-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.result-item h4 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.result-item p {
    color: #6b7280;
    font-size: 0.95rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark theme support */
html[data-theme="dark"] .tab-button {
    border-color: #374151;
    color: #9ca3af;
}

html[data-theme="dark"] .tab-button:hover {
    border-color: #60a5fa;
    color: #60a5fa;
}

html[data-theme="dark"] .tab-text-section h2 {
    color: #f9fafb;
}

html[data-theme="dark"] .tab-description {
    color: #d1d5db;
}

html[data-theme="dark"] .capability-item {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #d1d5db;
    border-color: #374151;
}

html[data-theme="dark"] .thinking-type {
    background: #1f2937;
    border-color: #374151;
}

html[data-theme="dark"] .metric-card {
    background: #1f2937;
    border-color: #374151;
}

html[data-theme="dark"] .result-item {
    background: #1f2937;
    border-color: #374151;
}

html[data-theme="dark"] .consulting-results-section {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tab-layout {
        grid-template-columns: 1fr;
        grid-template-areas: "content" "visual" !important;
        gap: 3rem;
        text-align: center;
    }

    .tab-text-section {
        order: 1;
        text-align: center;
    }

    .tab-text-section h2 {
        text-align: center;
    }

    .tab-description {
        text-align: center;
    }

    .tab-actions {
        justify-content: center;
    }

    .tab-visual-section {
        order: 2;
    }
}

@media (max-width: 768px) {
    .consulting-tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .tab-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .tab-text-section h2 {
        font-size: 2rem;
    }

    .tab-actions {
        flex-direction: column;
    }

    .results-features {
        grid-template-columns: 1fr;
    }

    .thinking-comparison {
        gap: 0.5rem;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .consulting-hero-section {
        padding: 4rem 0 3rem;
    }

    .consulting-main-title {
        font-size: 2rem;
    }

    .consulting-contact-cta-content h2 {
        font-size: 2rem;
    }

    .tab-text-section h2 {
        font-size: 1.75rem;
    }

    .results-content h2 {
        font-size: 2rem;
    }
}

/* Override any unwanted borders */
.consulting-services-section .container {
    border: none;
    box-shadow: none;
}

/* Ensure tab content areas are properly displayed */
.tab-content-container {
    border: none;
    background: transparent;
    padding: 2rem 0;
}

.tab-content {
    border: none;
    background: transparent;
    display: none;
}

.tab-content.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.tab-layout {
    border: none;
    background: transparent;
}

/* Courses Section Styles - Same as Home Page */
.courses-section-home {
    padding: 5rem 0;
    background: rgba(248, 250, 252, 0.8);
}

html[data-theme="dark"] .courses-section-home {
    background: rgba(15, 23, 42, 0.8);
}

.courses-section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.courses-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

html[data-theme="dark"] .courses-main-title {
    color: #ffffff;
}

.courses-main-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

html[data-theme="dark"] .courses-main-subtitle {
    color: #d1d5db;
}

.courses-highlight-text {
    font-size: 1.125rem;
    color: #374151;
    margin: 0;
}

html[data-theme="dark"] .courses-highlight-text {
    color: #f9fafb;
}

.angled-highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 0.2em 0.6em;
    transform: rotate(-1deg);
    display: inline-block;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.courses-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.course-card-home {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

html[data-theme="dark"] .course-card-home {
    background: rgba(15, 23, 42, 0.95);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.course-card-home:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(59, 130, 246, 0.2);
}

.course-category {
    display: none;
}

.course-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

html[data-theme="dark"] .course-title {
    color: #ffffff;
}

.course-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

html[data-theme="dark"] .course-description {
    color: #d1d5db;
}

.course-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.course-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

html[data-theme="dark"] .course-link {
    color: #60a5fa;
}

html[data-theme="dark"] .course-link:hover {
    color: #3b82f6;
}

.courses-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(226, 232, 240, 0.8);
}

html[data-theme="dark"] .courses-cta {
    border-color: rgba(59, 130, 246, 0.3);
}

.courses-cta-text {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

html[data-theme="dark"] .courses-cta-text {
    color: #d1d5db;
}

.courses-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-email {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-email:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

html[data-theme="dark"] .contact-email {
    color: #60a5fa;
    border-color: #60a5fa;
}

html[data-theme="dark"] .contact-email:hover {
    background: #60a5fa;
    color: #0f172a;
}

/* Results Section */
.results-section {
    padding: 6rem 0;
    background: linear-gradient(135deg,
            rgba(249, 250, 251, 0.95) 0%,
            rgba(243, 244, 246, 0.95) 100%);
}

.results-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.results-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.results-description {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

html[data-theme="dark"] .results-section {
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.95) 0%,
            rgba(30, 41, 59, 0.95) 100%);
}

html[data-theme="dark"] .results-title {
    color: #f1f5f9;
}

html[data-theme="dark"] .results-description {
    color: #94a3b8;
}

@media (max-width: 768px) {
    .results-section {
        padding: 4rem 0;
    }

    .results-title {
        font-size: 2.5rem;
    }

    .results-description {
        font-size: 1.125rem;
    }

    .courses-main-title {
        font-size: 2.5rem;
    }

    .courses-grid-home {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .course-card-home {
        padding: 1.5rem;
    }

    .courses-contact {
        flex-direction: column;
        align-items: center;
    }
}

/* New Service Section Styles for Non-Tab Layout */

.consulting-service-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.consulting-service-section:last-of-type {
    margin-bottom: 0;
}

/* Remove borders from first two service sections */
.consulting-service-section:nth-child(1),
.consulting-service-section:nth-child(2) {
    border: none;
    border-top: none;
    border-bottom: none;
}

.consulting-service-section:nth-child(1) .service-layout,
.consulting-service-section:nth-child(2) .service-layout {
    border: none;
    box-shadow: none;
}

.service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    min-height: 400px;
}

/* Alternating layout patterns */
.service-layout.content-left {
    grid-template-areas: "content visual";
}

.service-layout.content-right {
    grid-template-areas: "visual content";
}

.service-text-section {
    grid-area: content;
    text-align: left;
}

.service-visual-section {
    grid-area: visual;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-text-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: left;
}

html[data-theme="dark"] .service-text-section h2 {
    color: #f8fafc;
}

.service-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: left;
}

html[data-theme="dark"] .service-description {
    color: #cbd5e1;
}

.service-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-start;
}

.service-btn-primary,
.service-btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.service-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-color: transparent;
}

.service-btn-secondary {
    background: transparent;
    color: #3b82f6;
    border-color: #3b82f6;
}

.service-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    color: white;
}

.service-btn-secondary:hover {
    background: #3b82f6;
    color: white;
}

/* Dark theme support for service buttons */
html[data-theme="dark"] .service-btn-secondary {
    color: #60a5fa;
    border-color: #60a5fa;
}

html[data-theme="dark"] .service-btn-secondary:hover {
    background: #60a5fa;
    color: #1e293b;
}

/* Responsive design for service sections */
@media (max-width: 768px) {
    .service-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "visual";
        gap: 2rem;
        padding: 2rem 1rem;
        min-height: auto;
    }

    .service-layout.content-right {
        grid-template-areas:
            "content"
            "visual";
    }

    .service-text-section h2 {
        font-size: 2rem;
        text-align: center;
    }

    .service-description {
        text-align: center;
    }

    .service-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .service-visual-section {
        justify-content: center;
    }
}