.consultation-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
}

.highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.highlight-content strong {
    color: white;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.highlight-content span {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.consultation-types {
    margin-bottom: 5rem;
}

.consultation-types h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.types-intro {
    text-align: center;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.types-grid {
    display: grid;
    gap: 3rem;
}

.consultation-type-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.consultation-type-card:hover {
    transform: translateY(-8px);
}

.type-header {
    padding: 2rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.consultation-type-card.strategic .type-header {
    background: linear-gradient(135deg, #1e40af, #3730a3);
}

.consultation-type-card.technical .type-header {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.consultation-type-card.feasibility .type-header {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.consultation-type-card.optimization .type-header {
    background: linear-gradient(135deg, #ea580c, #dc2626);
}

.consultation-type-card.compliance .type-header {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.consultation-type-card.innovation .type-header {
    background: linear-gradient(135deg, #059669, #047857);
}

.type-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.type-header h3 {
    flex: 1;
    margin: 0 1rem;
    font-size: 1.4rem;
    color: white;
}

.type-duration {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.type-content {
    padding: 2rem;
}

.type-content > p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.type-services,
.type-deliverables,
.type-analysis,
.study-methodology,
.optimization-areas,
.optimization-process,
.compliance-areas,
.audit-process,
.innovation-services,
.innovation-approach {
    margin-bottom: 2rem;
}

.type-services h4,
.type-deliverables h4,
.type-analysis h4,
.study-methodology h4,
.optimization-areas h4,
.optimization-process h4,
.compliance-areas h4,
.audit-process h4,
.innovation-services h4,
.innovation-approach h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.type-services ul,
.type-deliverables ul,
.type-analysis ul,
.study-methodology ul,
.optimization-areas ul,
.optimization-process ul,
.compliance-areas ul,
.audit-process ul,
.innovation-services ul,
.innovation-approach ul {
    list-style: none;
    padding: 0;
}

.type-services li,
.type-deliverables li,
.type-analysis li,
.study-methodology li,
.optimization-areas li,
.optimization-process li,
.compliance-areas li,
.audit-process li,
.innovation-services li,
.innovation-approach li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
}

.type-services li::before,
.optimization-areas li::before,
.compliance-areas li::before,
.innovation-services li::before {
    content: '🎯';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.type-deliverables li::before,
.optimization-process li::before,
.audit-process li::before,
.innovation-approach li::before {
    content: '📋';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.type-analysis li::before,
.study-methodology li::before {
    content: '📊';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.type-pricing {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-range {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-note {
    color: #64748b;
    font-size: 0.9rem;
}

.type-ideal-for {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #374151;
    border-left: 4px solid var(--accent-color);
}

.expert-team {
    margin-bottom: 5rem;
}

.expert-team h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.team-intro {
    text-align: center;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.expert-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.expert-card:hover {
    transform: translateY(-5px);
}

.expert-card.lead {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.expert-badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.expert-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
}

.expert-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.expert-title {
    color: #64748b;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.expert-experience {
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.expert-expertise {
    margin-bottom: 1.5rem;
    text-align: left;
}

.expert-expertise h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expertise-tags span {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.expert-credentials {
    margin-bottom: 1.5rem;
    text-align: left;
}

.expert-credentials h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.expert-credentials ul {
    list-style: none;
    padding: 0;
}

.expert-credentials li {
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
    color: #374151;
    font-size: 0.85rem;
}

.expert-credentials li::before {
    content: '🏆';
    position: absolute;
    left: 0;
    font-size: 0.7rem;
}

.expert-highlights {
    text-align: left;
}

.expert-highlights ul {
    list-style: none;
    padding: 0;
}

.expert-highlights li {
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
    color: #374151;
    font-size: 0.85rem;
}

.expert-highlights li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.expert-achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.achievement {
    text-align: center;
    padding: 1rem;
    background: #f0f9ff;
    border-radius: 8px;
}

.achievement strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.achievement span {
    color: #64748b;
    font-size: 0.8rem;
}

.team-stats {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 16px;
}

.team-stats h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.3;
}

.consultation-process {
    margin-bottom: 5rem;
}

.consultation-process h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.process-intro {
    text-align: center;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.process-step {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 120px;
}

.step-number {
    position: absolute;
    left: 25px;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 2;
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent-color);
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-duration {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.step-content > p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-activities {
    margin-bottom: 1.5rem;
}

.step-activities h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.step-activities ul {
    list-style: none;
    padding: 0;
}

.step-activities li {
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
    color: #374151;
    font-size: 0.9rem;
}

.step-activities li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.step-deliverable {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #374151;
}

.step-deliverable strong {
    color: var(--primary-color);
}

.consultation-success-stories {
    margin-bottom: 5rem;
}

.consultation-success-stories h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.stories-intro {
    text-align: center;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.success-stories-grid {
    display: grid;
    gap: 3rem;
}

.success-story-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.success-story-card.major {
    border: 2px solid var(--accent-color);
}

.story-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.story-icon {
    font-size: 2.5rem;
}

.story-header h3 {
    flex: 1;
    margin: 0;
    color: white;
}

.story-category {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.story-content {
    padding: 2rem;
}

.client-info {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.client-info strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 1rem;
}

.project-details {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.project-details span {
    background: #f8fafc;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #64748b;
}

.challenge,
.solution,
.results {
    margin-bottom: 2rem;
}

.challenge h4,
.solution h4,
.results h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.challenge p,
.solution p {
    color: #4b5563;
    line-height: 1.6;
}

.solution ul {
    list-style: none;
    padding: 0;
}

.solution li {
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
    color: #374151;
}

.solution li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.results-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.result-metric {
    background: #f0fdf4;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #dcfce7;
}

.result-metric strong {
    display: block;
    color: #16a34a;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.result-metric span {
    color: #374151;
    font-size: 0.8rem;
}

.client-testimonial {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    font-style: italic;
}

.client-testimonial blockquote {
    color: #374151;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.client-testimonial cite {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.story-summary {
    margin-bottom: 1.5rem;
}

.story-summary p {
    color: #4b5563;
    line-height: 1.6;
}

.key-outcomes {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.outcome {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.consultation-booking {
    background: #f8fafc;
    padding: 4rem 3rem;
    border-radius: 16px;
    margin-bottom: 5rem;
}

.consultation-booking h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.booking-intro {
    text-align: center;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.booking-option {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.option-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 2rem;
    text-align: center;
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.option-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.option-duration {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.option-price {
    font-size: 1.5rem;
    font-weight: bold;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    display: inline-block;
}

.option-content {
    padding: 2rem;
}

.option-content > p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.option-includes {
    margin-bottom: 2rem;
}

.option-includes h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.option-includes ul {
    list-style: none;
    padding: 0;
}

.option-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
}

.option-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.option-format,
.option-guarantee,
.option-ideal {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #374151;
}

.option-format strong,
.option-guarantee strong,
.option-ideal strong {
    color: var(--primary-color);
}

.booking-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.booking-btn {
    background: #f1f5f9;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.booking-btn.primary {
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

.booking-btn.primary:hover {
    background: #0369a1;
    border-color: #0369a1;
}

.booking-btn.premium {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
}

.booking-btn.premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.booking-calendar {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.booking-calendar h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.booking-calendar p {
    color: #64748b;
    margin-bottom: 2rem;
}

.calendar-widget {
    max-width: 400px;
    margin: 0 auto;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-nav {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    padding: 0.5rem;
}

.calendar-title {
    color: var(--primary-color);
    font-weight: 600;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.calendar-day-header {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.calendar-day {
    background: white;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day.past {
    background: #f8fafc;
    color: #9ca3af;
    cursor: not-allowed;
}

.calendar-day.today {
    background: var(--accent-color);
    color: white;
    font-weight: bold;
}

.calendar-day.available:hover {
    background: #e0f2fe;
    color: var(--primary-color);
}

.calendar-day.unavailable {
    background: #fef2f2;
    color: #dc2626;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
}

.time-slots {
    margin-top: 2rem;
}

.time-slots h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
}

.time-slot {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    border-color: var(--accent-color);
    background: #f0f9ff;
}

.time-slot.selected {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.time-slot.unavailable {
    background: #f8fafc;
    color: #9ca3af;
    cursor: not-allowed;
}

.consultation-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 3rem;
    border-radius: 16px;
    text-align: center;
}

.consultation-cta h2 {
    color: white;
    margin-bottom: 2rem;
}

.consultation-cta > p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.cta-stat {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.cta-stat strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cta-stat span {
    opacity: 0.9;
    font-size: 0.9rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.cta-btn.primary {
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

.cta-btn.primary:hover {
    background: #0369a1;
    border-color: #0369a1;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

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

.cta-btn.tertiary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.cta-btn.tertiary:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

.cta-guarantee {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.cta-guarantee h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-guarantee p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cta-guarantee cite {
    opacity: 0.8;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .consultation-highlights {
        grid-template-columns: 1fr;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .types-grid {
        gap: 2rem;
    }
    
    .type-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .experts-grid {
        grid-template-columns: 1fr;
    }
    
    .expert-achievements {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline::before {
        left: 25px;
    }
    
    .process-step {
        padding-left: 80px;
    }
    
    .step-number {
        left: 0;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .success-stories-grid {
        gap: 2rem;
    }
    
    .project-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .results-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-options {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .consultation-booking,
    .consultation-cta {
        padding: 2rem;
    }
}
