/* Office Hero Section */
.hero-office {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url(../images/calgary_commercial.jpg) no-repeat center center/cover;
    padding: 120px 0;
    color: #fff;
    text-align: center;
}

.hero-content-office h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content-office p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Office Services Section */
.office-services {
    padding: 80px 0;
}

.services-grid-office {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card-office {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.service-card-office:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-office:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-office h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.service-card-content > p {
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-example {
    background: var(--light-background);
    border-left: 3px solid var(--accent-color);
    padding: 15px;
    border-radius: 5px;
    font-size: 0.95rem;
}

.service-example p {
    margin: 0 !important;
    color: var(--light-text);
}

.service-example strong {
    color: var(--text-color);
}

/* Office Pricing Section */
.pricing-section-office {
    padding: 80px 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.pricing-section-office::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.05) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 25%),
        linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.pricing-section-office .section-title {
    color: #fff;
    position: relative;
    margin-bottom: 1.5rem;
}

.pricing-section-office .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

/* Main Pricing Table */
.pricing-table-office {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-table-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    position: relative;
    padding: 5px;
    gap: 5px;
}

.header-cell {
    padding: 20px;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.pricing-table-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    transition: all 0.3s ease;
    color: var(--text-color);
    padding: 5px;
    gap: 5px;
}

.pricing-table-row:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.02);
}

.pricing-table-row:hover {
    background-color: rgba(var(--primary-color-rgb), 0.05);
    transform: translateX(5px);
}

.cell {
    padding: 20px;
    text-align: left;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    font-family: 'Roboto Slab', serif;
    font-size: 1.05rem;
}

.pricing-note {
    text-align: center;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 30px 0 50px;
    position: relative;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Scenarios */
.pricing-scenarios {
    margin-top: 60px;
    position: relative;
}

.pricing-scenarios h3 {
    text-align: center;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-scenarios h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.scenario-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    perspective: 1000px;
}

.scenario-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: translateZ(0);
}

.scenario-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.scenario-card::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(255,255,255,0.1) 0%, 
        rgba(255,255,255,0.05) 50%,
        rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.scenario-card:hover {
    transform: translateY(-5px) scale(1.02) translateZ(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.scenario-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.4;
    position: relative;
    padding-bottom: 15px;
}

.scenario-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.scenario-card:hover h4::after {
    width: 60px;
}

.scenario-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    padding: 10px 15px;
    background: rgba(0,0,0,0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(0,0,0,0.04);
    transform: translateX(5px);
}

.detail-label {
    color: var(--primary-color);
    font-weight: 600;
    min-width: 80px;
    position: relative;
}

.detail-label::after {
    content: ':';
    position: absolute;
    right: -8px;
    color: var(--accent-color);
}

.detail-value {
    color: var(--text-color);
    flex: 1;
    font-family: 'Roboto Slab', serif;
    font-size: 1.05rem;
    font-weight: bold;
}

/* Common Services Price Table Section */
.common-services-pricing {
    padding: 80px 0;
    background: var(--light-background);
}

.common-services-pricing .section-title {
    margin-bottom: 40px;
    color: var(--primary-color);
}

.common-pricing-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.common-pricing-table .pricing-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 1fr;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.common-pricing-table .pricing-table-header .header-cell {
    padding: 20px;
    text-align: left;
}

.common-pricing-table .pricing-table-body .pricing-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 1fr;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.common-pricing-table .pricing-table-body .pricing-table-row:last-child {
    border-bottom: none;
}

.common-pricing-table .pricing-table-body .pricing-table-row:hover {
    background: #f1f5f9;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.common-pricing-table .pricing-table-body .cell {
    padding: 20px;
    text-align: left;
    display: flex;
    align-items: center;
    color: var(--text-color);
    border-right: 1px solid var(--border-color);
}

.common-pricing-table .pricing-table-body .cell:last-child {
    border-right: none;
}

/* Office Moving Checklist Section */
.checklist-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.checklist-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.timeline-group {
    margin-bottom: 40px;
    position: relative;
}

.timeline-group-title {
    font-size: 1.8rem;
    color: #fff !important;
    margin-bottom: 30px;
    padding-left: 100px;
    position: relative;
}

.timeline-group-title::before {
    content: '';
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    z-index: 1;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 100px;
    margin-bottom: 20px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 10px;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border: 4px solid var(--secondary-color);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover::before {
    transform: scale(1.2);
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    flex-grow: 1;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    background: #fff;
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--light-text);
    margin: 0;
}

.timeline-date {
    background: var(--secondary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 120px;
    text-align: center;
    align-self: center;
}

/* Additional Tips Section */
.tips-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-color);
    font-size: 1.1rem;
}
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}
.tip-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 32px rgba(44,82,130,0.10);
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 340px;
}
.tip-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 40px rgba(44,82,130,0.13);
    border: 2px solid var(--secondary-color);
}
.tip-icon {
    font-size: 2.3rem;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    background: var(--light-background);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(44,82,130,0.07);
}
.tip-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
    margin-top: 0.2rem;
}
.tip-card p {
    color: var(--light-text);
    font-size: 1.05rem;
    margin: 0;
}

/* Office Moves Timeline Section - REVERSED COLORS */
.office-moves-timeline {
    padding: 80px 0 60px 0;
    background: var(--primary-color);
    position: relative;
    z-index: 1;
}
.office-moves-timeline .section-title {
    text-align: center;
    color: #fff;
    margin-bottom: 48px;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
}
.moves-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 32px;
    border-left: 4px solid var(--accent-color);
    background: rgba(255,255,255,0.08);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.move-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    min-height: 90px;
}
.move-step:last-child {
    margin-bottom: 0;
}
.move-step-icon {
    position: absolute;
    left: -44px;
    top: 0;
    width: 56px;
    height: 56px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    z-index: 2;
    border: 4px solid var(--primary-color);
    transition: background 0.2s;
}
.move-step-icon i {
    display: block;
}
.move-step-content {
    margin-left: 36px;
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 24px 32px 20px 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    position: relative;
    transition: box-shadow 0.2s;
}
.move-step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.move-step-content h3 span {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-left: 8px;
}
.move-step-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.move-detail {
    font-size: 1.05rem;
    color: var(--text-color);
    background: rgba(44,82,130,0.04);
    border-radius: 6px;
    padding: 8px 14px;
    margin-bottom: 0;
    font-family: 'Roboto Slab', serif;
    box-shadow: 0 1px 4px rgba(44,82,130,0.03);
}
.move-detail strong {
    color: var(--accent-color);
    font-weight: 700;
    margin-right: 6px;
}
.moves-timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 32px;
    bottom: 32px;
    width: 4px;
    background: var(--accent-color);
    border-radius: 2px;
    z-index: 0;
}
/* Office carousel wider styles */
.why-choose-section .carousel {
    max-width: 800px;
}
.why-choose-section .carousel-card {
    max-width: 750px;
}

/* Office Services Section */
.office-services {
    padding: 5rem 0;
}

.office-services .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.15rem;
    line-height: 1.7;
}

.services-grid-office {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-card-office {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(44, 82, 130, 0.07);
    padding: 0;
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card-content-office {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-office:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(44, 82, 130, 0.13);
}

.service-card-office h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card-office p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}


/* Office Moving Process Section Styles */
  .moving-process-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.2rem;
    color: #fff !important;
    
  }
  
  .moving-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
  }
  
  .process-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(44,82,130,0.07);
    display: flex;
    flex-direction: column;
  }
  
  .process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(44,82,130,0.13);
  }
  
  .process-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
  }
  
  .process-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .process-card:hover .process-card-image img {
    transform: scale(1.05);
  }
  
  .process-card-header {
    padding: 1.5rem;
    position: relative;
    background: var(--light-background);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .process-number {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
  }
  
  .process-card h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
  }
  
  .process-card-body {
    padding: 2rem;
    background: #fff;
  }
  
  .process-card p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
  }
  
  /* Adjust grid layout for cards 4 and 5 */
  .process-card:nth-child(4) {
    grid-column: 1 / span 2;
  }
  
  .process-card:nth-child(5) {
    grid-column: 3;
  }


/* --- Office Best Choice Section (Primary/Dark) --- */
.office-best-choice-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.18rem;
    font-weight: 700;
    color: #fff !important;
    background: linear-gradient(90deg, var(--secondary-color) 60%, var(--primary-color) 100%);
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 4px 24px rgba(66,153,225,0.13);
    border-left: 8px solid var(--accent-color);
  }
  .office-best-choice-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
  }
  .office-best-choice-features::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
    z-index: 0;
  }
  .office-best-choice-feature {
    background: #f7fafd;
    color: var(--text-color);
    box-shadow: 0 4px 16px rgba(44,82,130,0.07);
    border-radius: var(--border-radius);
    border: 1px solid #e3eaf3;
    padding: 2rem 2rem 2rem 3.5rem;
    gap: 1.5rem;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
    overflow: visible;
  }
  .office-best-choice-feature:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 36px rgba(44,82,130,0.28);
  }
  .feature-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    box-shadow: 0 2px 12px rgba(246,173,85,0.18);
    margin-top: 0.2rem;
    position: absolute;
    left: -32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  }
  .office-best-choice-feature:hover .feature-icon {
    background: var(--secondary-color);
    color: #fff;
    box-shadow: 0 4px 24px rgba(66,153,225,0.23);
    transform: translateY(-50%) scale(1.12) rotate(-8deg);
  }
  .feature-content h3 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: 0.5px;
  }
  .feature-content p {
    color: var(--text-color);
    font-size: 1.08rem;
    margin: 0;
    font-weight: 600;
  }
  /* --- Tips for a Successful Move in Office Section --- */
.office-tips-section {
    padding: 4rem 0;
    background: var(--light-background);
  }
  .office-tips-list {
    counter-reset: tip;
    list-style: none;
    max-width: 700px;
    margin: 2.5rem auto 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .office-tips-list li {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 12px rgba(44,82,130,0.08);
    padding: 1.5rem 2rem 1.5rem 3.5rem;
    position: relative;
    font-size: 1.08rem;
    color: var(--text-color);
    line-height: 1.7;
  }
  .office-tips-list li::before {
    counter-increment: tip;
    content: counter(tip);
    position: absolute;
    left: 1.2rem;
    top: 1.5rem;
    width: 2.1rem;
    height: 2.1rem;
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(44,82,130,0.07);
  }
  .office-tips-list strong {
    color: var(--primary-color);
    font-size: 1.08em;
  }
  
  /* --- Numbered process-step for Tips section --- */
  .office-tips-timeline {
    justify-content: center;
    max-width: 2000px;
    margin: 0 auto;
    gap: 1.5rem;
  }
  .office-tips-timeline .process-step {
    max-width: 320px;
    min-width: 280px;
    flex: 1;
    margin: 0;
  }
  .office-tips-timeline .process-icon {
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.3rem;
    border: none;
    box-shadow: 0 2px 8px rgba(44,82,130,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .office-tips-timeline .process-icon[data-step] {
    font-family: inherit;
    font-style: normal;
    font-size: 1.3rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(44,82,130,0.07);
  }
  .office-tips-timeline .tip-image {
    width: 100%;
    max-width: 100%;
    height: 180px;
    margin: 0 0 0.7rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #e2e8f0;
  }
  .office-tips-timeline .tip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    display: block;
  }