        * {
          margin: 0;
            padding: 0;
            box-sizing: border-box;
         
        }
          body {
            font-family: var(--font-main);
            background-color: var(--sk-white);
            color: var(--sk-dark);
      
           
        }
  
        /* --- Section Container --- */
        .tags-section body{
              background-color: #f4f5f7; /* Sharekhan light gray background */
            color: #22252a; /* Sharekhan signature charcoal text */
            

            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }
  
              .tags-section {
               justify-content: center;
                   align-items: center;
            padding: 60px 20px; 
            width: 100%;
            max-width: 2000px;
            background: #ffffff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            border-top: 5px solid #f8c301; /* Sharekhan Yellow top accent */
        }
               .Join-container {
            display: flex;
            flex-wrap: wrap; /* Allows stacking on mobile viewports */
            height:520px;
        }
        .section-header {
            margin-bottom: 30px;
            text-align: center;
        }

            .section-header h2 {
                font-size: 1.8rem;
                color: #22252a; /* Charcoal */
                margin-bottom: 8px;
            }

                .section-header h2 span {
                    color: #f8c301; /* Sharekhan Yellow */
                }

        /* --- Core Flex Wrap Layout --- */
        .tags-flex-container {
            display: flex;
            flex-wrap: wrap; /* Forces items to wrap to next line when space runs out */
            justify-content: center; /* Centers the row clusters neatly */
            gap: 12px 16px; /* Spacing: 12px vertical rows, 16px horizontal columns */
        }

        /* --- Individual Tag Styling --- */
        .sk-tag {
            display: inline-block;
            background-color: #22252a; /* Sharekhan Charcoal Base */
            color: #ffffff;
            padding: 12px 24px;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            border: 2px solid #22252a;
            border-radius: 4px; /* Classic sharp corporate edges */
            white-space: nowrap;
            transition: all 0.25s ease-in-out;
            cursor: pointer;
        }

            /* Hover Interaction State */
            .sk-tag:hover {
                background-color: #f8c301; /* Inverts to Sharekhan Yellow */
                border-color: #f8c301;
                color: #22252a; /* Switches text back to charcoal */
                transform: translateY(-2px);
                box-shadow: 0 4px 8px rgba(248, 195, 1, 0.3);
            }

            /* Featured Tag State (e.g., Active by Default) */
            .sk-tag.active {
                background-color: #f8c301;
                border-color: #f8c301;
                color: #22252a;
            }

                .sk-tag.active:hover {
                    background-color: #22252a;
                    border-color: #22252a;
                    color: #ffffff;
                    box-shadow: 0 4px 8px rgba(34, 37, 42, 0.2);
                }          
