

        /* Layout Containers */
        .diagram-wrapper {
            width: 100%;
            max-width: 1500px;
            margin: 0 auto;
            background-color: #5478BB;
            border-radius: 2.5rem;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            display: flex;
            flex-direction: column;
        }
.diagram-wrapper a {
  text-decoration: none;
}

.diagram-wrapper a:hover {
font-weight: 700;
  color: #ffffff;
}
        .top-section {
            display: flex;
            align-items: stretch;
            background-color: #44A3C0;
            position: relative;
        }

        /* Sidebars */
        .sidebar {
            width: 70px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 0;
        }

        .sidebar-link {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: white;
            font-weight: 600;
            font-size: 1.25rem;
            white-space: nowrap;
            transform: rotate(-90deg);
            transition: opacity 0.2s ease;
        }

        .sidebar-link:hover {
            opacity: 0.8;
        }

      

        /* Center Content Area */
        .center-container {
            flex: 1;
            background-color: #25283D;
            border-radius: 1.5rem;
            display: flex;
            flex-direction: column;
            padding: 2.5rem 2rem;
            box-shadow: 0 0 20px rgba(0,0,0,0.25);
            border: 1px solid #25283D;
            z-index: 10;
        }

        /* Navigation Pills */
        .pills-nav {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 3.5rem;
            flex-wrap: wrap;
        }

        .pill-link {
            flex: 1;
            min-width: 200px;
            border: 1px solid #5478BB;
            border-radius: 0.75rem;
            text-align: center;
            padding: 0.75rem 1rem;
            color: white;
            font-weight: 700;
            font-size: 0.9375rem;
            transition: background-color 0.2s ease;
        }

        .pill-link:hover {
            background-color: rgba(84, 120, 187, 0.2);
        }

        /* Circular Icons Grid */
        .icons-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 1rem;
            padding: 0 0.5rem;
            flex-wrap: wrap;
        }

        .icon-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 144px; /* 36 * 4px */
            cursor: pointer;
        }

        .icon-circle {
            width: 130px;
            height: 130px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .icon-item:hover .icon-circle {
            transform: scale(1.05);
        }

        .icon-svg {
            width: 80px;
            height: 80px;
        }

        .icon-label {
            color: white;
            text-align: center;
            font-size: 0.9375rem;
            line-height: 1.3;
            font-weight: 500;
        }

        /* Bottom Section */
        .bottom-section {
            height: 75px;
            background-color: #5478BB;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border-top: 1px solid rgba(101, 136, 201, 0.5);
        }

        .platform-link {
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            text-transform: uppercase;
            transition: opacity 0.2s ease;
        }

        .platform-link:hover {
            opacity: 0.8;
          color
        }

        /* Responsive Design Rules */
        @media (max-width: 1280px) {
            .icons-row {
                justify-content: center;
                gap: 2rem;
            }
            .pills-nav {
                justify-content: center;
            }
        }

        @media (max-width: 1024px) {
          
            .diagram-wrapper {
                border-radius: 1.5rem;
            }

            .top-section {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
                height: 60px;
            }

            .sidebar-link {
                transform: none; /* Un-rotate sidebars on smaller screens */
                font-size: 1.1rem;
            }

            .center-container {
                border-radius: 0; /* Make corners flush against stacked headers */
                padding: 2rem 1rem;
                border-left: none;
                border-right: none;
            }

            .pill-link {
                min-width: 100%; /* Stack pills vertically */
            }

            .icons-row {
                gap: 1.5rem;
            }

            .bottom-section {
                height: 60px;
            }

            .platform-link {
                font-size: 1.25rem;
            }
        }