  :root {
    --td-primary: #00396b;
    --td-accent: #109c94;
    --td-accent-hover: #0d837c;
    --td-light: #f4f8fb;
    --td-dark: #0f1c2e;
    --td-gray: #5a6a7e;
  }

  /* Global typography & Utility */
  .pco-wrapper {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--td-dark);
    line-height: 1.6;
    background-color: #ffffff;
  }
  .bg-pco-primary { background-color: var(--td-primary) !important; }
  .bg-pco-light { background-color: var(--td-light) !important; }
  .text-pco-primary { color: var(--td-primary) !important; }
  .text-pco-accent { color: var(--td-accent) !important; }

  /* Top Banner Section */
  .pco-top-banner-img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Hero Section (Seamless White Background) */
  .pco-hero {
    background-color: #ffffff;
    color: var(--td-dark);
    padding: 3rem 0 4rem 0;
  }
  .pco-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--td-primary);
    letter-spacing: -0.5px;
  }
  .pco-hero .lead {
    font-size: 1.2rem;
    color: var(--td-gray);
    font-weight: 400;
  }
  .pco-badge {
    background-color: rgba(16, 156, 148, 0.1);
    border: 1px solid var(--td-accent);
    color: var(--td-accent);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    display: inline-block;
  }

  /* Animated Counter Bar */
  .pco-stats-bar {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 57, 107, 0.08);
    border: 1px solid rgba(0, 57, 107, 0.08);
    border-radius: 12px;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }
  .pco-stat-item h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--td-primary);
    margin-bottom: 0;
    line-height: 1;
  }
  .pco-stat-item p {
    font-size: 0.95rem;
    color: var(--td-gray);
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  /* Section Titles */
  .section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
  }
  .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--td-accent);
    border-radius: 2px;
  }

  /* Event Types Pills */
  .event-pill {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    padding: 0.85rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--td-primary);
    transition: all 0.3s ease;
  }
  .event-pill:hover {
    border-color: var(--td-accent);
    background-color: var(--td-light);
    transform: translateY(-2px);
  }

  /* Services Grid Cards & Large Icons */
  .service-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
  }
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 57, 107, 0.1);
    border-color: rgba(16, 156, 148, 0.3);
  }
  
  /* Desktop Larger Icons Fix */
  .service-icon-box {
    width: 75px;
    height: 75px;
    background: rgba(16, 156, 148, 0.1);
    color: var(--td-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem; /* Large Desktop Icon Size */
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }
  .service-card:hover .service-icon-box {
    background: var(--td-accent);
    color: #ffffff;
  }

 /*       VIRTUAL CENTER SECTION (4 Large Round Icon Cards) */
  .vc-section {
    background: linear-gradient(135deg, #f4f8fb 0%, #eef5f8 100%);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
  }
  
  .vc-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.2rem 1.8rem;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 57, 107, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .vc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 57, 107, 0.1);
    border-color: #109c94;
  }

  /* Large Round Icon Styling */
  .vc-icon-round {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 156, 148, 0.1) 0%, rgba(0, 57, 107, 0.08) 100%);
    border: 2px solid rgba(16, 156, 148, 0.2);
    color: #109c94;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .vc-card:hover .vc-icon-round {
    background: #109c94;
    color: #ffffff;
    border-color: #109c94;
    transform: scale(1.05);
  }

  .vc-badge {
    background-color: rgba(0, 57, 107, 0.08);
    color: #00396b;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }  /* Buttons & CTA Elements */
  .btn-td-accent {
    background-color: var(--td-accent);
    color: #ffffff !important;
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 6px;
    border: none;
    transition: all 0.3s ease;
  }
  .btn-td-accent:hover {
    background-color: var(--td-accent-hover);
    box-shadow: 0 6px 18px rgba(16, 156, 148, 0.35);
  }
  .btn-td-primary-outline {
    background-color: transparent;
    color: var(--td-primary) !important;
    border: 2px solid var(--td-primary);
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  .btn-td-primary-outline:hover {
    background-color: var(--td-primary);
    color: #ffffff !important;
  }

  /* High-Visibility Action Box (Contact Section) */
  .action-contact-card {
    background: #ffffff;
    border: 2px solid var(--td-accent);
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0, 57, 107, 0.15);
    padding: 2rem;
    transition: all 0.3s ease;
  }
  .contact-action-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--td-light);
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    height: 100%;
  }
  .contact-action-btn:hover {
    background: #ffffff;
    border-color: var(--td-accent);
    box-shadow: 0 8px 20px rgba(16, 156, 148, 0.2);
    transform: translateY(-3px);
  }
  .contact-action-btn .btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--td-accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
  }
  .contact-action-btn:hover .btn-icon {
    background: var(--td-primary);
  }

  /* Accordion Customization */
  .vf-faq .card {
    border: 1px solid #e2e8f0;
    border-radius: 8px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
  }
  .vf-faq .card-header {
    background-color: #ffffff;
    border-bottom: none;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--td-primary);
  }
  .vf-faq .card-header.collapsed {
    color: var(--td-dark);
  }
  .vf-faq .rotate-icon {
    transition: transform 0.3s ease;
  }
  .vf-faq .card-header:not(.collapsed) .rotate-icon {
    transform: rotate(180deg);
  }
