/* CSS/services.css */

/* Services Hero Section */
.services-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Images/Services/pattern-services.png');
    background-size: 300px;
    opacity: 0.1;
    pointer-events: none;
}

.hero-breadcrumb {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.hero-breadcrumb a:hover {
    color: var(--secondary-color);
}

.hero-breadcrumb span {
    color: var(--secondary-color);
    font-weight: 500;
}

.hero-breadcrumb i {
    font-size: 12px;
    opacity: 0.6;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    opacity: 0.9;
    margin-bottom: 50px;
}

.hero-visual {
    margin-top: 60px;
    height: 200px;
    position: relative;
}

.visual-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 200px;
}

.gear {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 32px;
    animation: gearRotation 10s infinite linear;
}

.gear::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px dashed rgba(244, 122, 42, 0.3);
    border-radius: 50%;
}

.gear-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.gear-2 {
    top: 60px;
    right: 0;
    animation-delay: -3s;
    animation-direction: reverse;
}

.gear-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -6s;
}

@keyframes gearRotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Services Overview */
.services-overview {
    padding: 100px 0 50px;
    background-color: #f8fafc;
}

.services-quick-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    padding: 25px 20px;
    border-radius: var(--border-radius);
    background-color: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-width: 180px;
    position: relative;
    overflow: hidden;
}

.quick-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--secondary-color);
    transform: translateY(-100%);
    transition: var(--transition);
}

.quick-nav-item:hover {
    transform: translateY(-10px);
    color: var(--primary-color);
}

.quick-nav-item:hover::before {
    transform: translateY(0);
}

.quick-nav-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(38, 62, 81, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 28px;
    color: var(--primary-color);
    transition: var(--transition);
}

.quick-nav-item:hover .quick-nav-icon {
    background-color: var(--secondary-color);
    color: var(--white);
}

.quick-nav-item span {
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}

/* Service Detail Sections */
.service-detail {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.service-detail.service-alt {
    background-color: #f8fafc;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(244, 122, 42, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.badge-icon {
    color: var(--secondary-color);
    font-size: 18px;
}

.badge-text {
    font-weight: 600;
    color: var(--secondary-color);
}

.service-title {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.service-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-light);
}

/* Maintenance & Verification Features */
.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(38, 62, 81, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature:hover .feature-icon {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.feature-content h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Service Visual Cards */
.visual-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.card-header h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.card-item:hover {
    background-color: rgba(38, 62, 81, 0.05);
}

.card-item i {
    color: var(--secondary-color);
    font-size: 16px;
    width: 24px;
}

.floating-badge {
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    animation: floatBadge 8s infinite ease-in-out;
    z-index: 1;
}

.floating-badge i {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.floating-badge span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.floating-badge-1 {
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.floating-badge-2 {
    bottom: 15%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Process Visualization */
.process-visualization {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.process-visualization::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    width: 2px;
    height: 100%;
    background-color: rgba(38, 62, 81, 0.1);
    z-index: 1;
}

.process-step {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    padding-top: 10px;
}

.step-content h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
}

/* Service Stats */
.service-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
    font-weight: 500;
}

/* Service Benefits */
.service-benefits {
    background-color: rgba(38, 62, 81, 0.05);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.service-benefits h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-benefits ul {
    list-style: none;
}

.service-benefits li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-benefits i {
    color: var(--secondary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Training Types */
.training-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0 40px;
}

.training-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.training-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(38, 62, 81, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.training-card h5 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.training-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Certification Display */
.certification-display {
    position: relative;
}

.certificate-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.certificate-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.certificate-header h4 {
    margin: 0;
    font-size: 1.3rem;
}

.certificate-badge {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.certificate-body {
    padding: 30px;
}

.trainer-info {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.trainer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
}

.trainer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trainer-details h5 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.trainer-details p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.trainer-cert {
    display: inline-block;
    background-color: rgba(244, 122, 42, 0.1);
    color: var(--secondary-color);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.training-subjects h6 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1rem;
}

.training-subjects ul {
    list-style: none;
    columns: 2;
}

.training-subjects li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
}

.training-subjects li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Products Showcase */
.products-showcase {
    position: relative;
}

.product-slider {
    display: flex;
    overflow: hidden;
    border-radius: var(--border-radius);
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.product-item {
    flex: 0 0 100%;
    padding: 40px;
    text-align: center;
    transition: transform 0.5s ease;
    opacity: 0;
    display: none;
}

.product-item.active {
    opacity: 1;
    display: block;
}

.product-icon {
    width: 100px;
    height: 100px;
    background-color: rgba(38, 62, 81, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 42px;
    color: var(--primary-color);
    transition: var(--transition);
}

.product-item.active .product-icon {
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(244, 122, 42, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(244, 122, 42, 0);
    }
}

.product-item h5 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.product-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.product-nav-btn {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.product-nav-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.product-indicators {
    display: flex;
    gap: 10px;
}

.product-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(38, 62, 81, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.product-indicator.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

/* Supplier Logos */
.supplier-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.supplier-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: rgba(38, 62, 81, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.supplier-item:hover {
    background-color: rgba(38, 62, 81, 0.1);
    transform: translateX(5px);
}

.supplier-icon {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.supplier-item span {
    font-weight: 600;
    color: var(--primary-color);
}

/* Product Categories */
.product-categories {
    background-color: rgba(38, 62, 81, 0.05);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.product-categories h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.product-categories ul {
    list-style: none;
    columns: 2;
}

.product-categories li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.product-categories li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.product-categories strong {
    color: var(--primary-color);
}

/* Installation Process */
.installation-process {
    margin: 40px 0;
}

.process-timeline {
    position: relative;
    padding-left: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 2px;
    height: 100%;
    background-color: var(--secondary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 16px;
}

.timeline-content {
    padding: 15px 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h5 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Team Display */
.team-display {
    position: relative;
}

.team-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.team-member {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.team-member:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
    flex-shrink: 0;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h5 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.member-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.member-cert {
    display: inline-block;
    background-color: rgba(38, 62, 81, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.installation-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 15px 30px rgba(244, 122, 42, 0.3);
    z-index: 1;
    animation: pulseBadge 3s infinite;
}

.installation-badge i {
    font-size: 36px;
    margin-bottom: 10px;
}

.installation-badge span {
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.3;
}

@keyframes pulseBadge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Service Comparison */
.service-comparison {
    padding: 100px 0;
    background-color: #f8fafc;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 40px;
    font-weight: 600;
    font-size: 0.9rem;
    transform: rotate(45deg);
}

.pricing-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.pricing-header h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-features i {
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-features .fa-check {
    color: #28a745;
}

.pricing-features .fa-times {
    color: #dc3545;
}

.pricing-cta {
    padding: 0 30px 30px;
    text-align: center;
}

/* Services CTA */
.services-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Images/Services/pattern-light.png');
    background-size: 300px;
    opacity: 0.1;
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles for Services */
@media (max-width: 1200px) {
    .service-detail-grid {
        gap: 50px;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .service-visual {
        order: -1;
    }
    
    .service-alt .service-visual {
        order: 2;
    }
    
    .training-types {
        grid-template-columns: 1fr;
    }
    
    .supplier-logos {
        grid-template-columns: 1fr;
    }
    
    .product-categories ul {
        columns: 1;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-title {
        font-size: 2.2rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .service-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .service-cta {
        flex-direction: column;
    }
    
    .floating-badge {
        width: 100px;
        height: 100px;
        font-size: 0.8rem;
    }
    
    .floating-badge i {
        font-size: 24px;
    }
    
    .installation-badge {
        width: 100px;
        height: 100px;
        right: 0;
    }
    
    .installation-badge i {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .services-quick-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-nav-item {
        width: 100%;
        max-width: 300px;
    }
    
    .training-subjects ul {
        columns: 1;
    }
    
    .timeline-content {
        padding: 15px;
    }
}