 /* Main Content Container */
        #gst-notice-page .main-content-container {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
        }
        
        /* External CSS for GST Notice Page */
        #gst-notice-page .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        
        #gst-notice-page .gst-section {
            padding: 80px 0;
            width: 100%;
        }
        
        #gst-notice-page .gst-section.alt {
            background: linear-gradient(135deg, #f8fafc 0%, #e8eaf6 100%);
            border-top: 2px solid #e3f2fd;
            border-bottom: 2px solid #e3f2fd;
        }
        
        #gst-notice-page h2 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 2.5rem;
            color: #1a237e;
            margin-bottom: 20px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        #gst-notice-page h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ff5722, #4caf50);
            border-radius: 2px;
        }
        
        #gst-notice-page h3 {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            color: #283593;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        #gst-notice-page h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            color: #3949ab;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        #gst-notice-page p {
            margin-bottom: 15px;
            font-size: 1.05rem;
            color: #555;
        }
        
        #gst-notice-page .section-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 50px;
            font-size: 1.1rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Content Cards */
        #gst-notice-page .content-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            border: 1px solid #e0e0e0;
            margin-bottom: 30px;
            border-left: 5px solid #4caf50;
        }
        
        /* Highlight Boxes */
        #gst-notice-page .highlight-box {
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid;
        }
        
        #gst-notice-page .highlight-box.warning {
            background: linear-gradient(135deg, #fff3e0, #ffecb3);
            border-left-color: #ff9800;
        }
        
        #gst-notice-page .highlight-box.danger {
            background: linear-gradient(135deg, #ffebee, #ffcdd2);
            border-left-color: #f44336;
            text-align: center;
            padding: 30px;
            font-size: 1.1rem;
        }
        
        /* Reasons Grid */
        #gst-notice-page .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        #gst-notice-page .reason-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            border: 2px solid #e3f2fd;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        #gst-notice-page .reason-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-color: #4caf50;
        }
        
        #gst-notice-page .reason-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }
        
        /* Table Card */
        #gst-notice-page .table-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            border: 2px solid #e8eaf6;
            overflow: hidden;
        }
        
        #gst-notice-page .table-wrap {
            overflow-x: auto;
            border-radius: 10px;
            border: 1px solid #e0e0e0;
            margin: 0;
            padding: 0;
        }
        
        #gst-notice-page .gst-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            font-size: 0.95rem;
            min-width: 800px;
        }
        
        #gst-notice-page .gst-table thead {
            background: linear-gradient(135deg, #1a237e, #283593);
            color: white;
        }
        
        #gst-notice-page .gst-table th {
            padding: 18px 15px;
            text-align: left;
            font-weight: 600;
            font-family: 'Open Sans', sans-serif;
            border-right: 1px solid rgba(255,255,255,0.1);
        }
        
        #gst-notice-page .gst-table th:last-child {
            border-right: none;
        }
        
        #gst-notice-page .gst-table td {
            padding: 16px 15px;
            border-bottom: 1px solid #e0e0e0;
            vertical-align: top;
        }
        
        #gst-notice-page .gst-table tbody tr {
            transition: all 0.2s ease;
        }
        
        #gst-notice-page .gst-table tbody tr:hover {
            background: #f5f7ff;
            transform: translateX(5px);
        }
        
        #gst-notice-page .gst-table tbody tr:nth-child(even) {
            background: #fafafa;
        }
        
        #gst-notice-page .gst-table tbody tr:nth-child(even):hover {
            background: #f5f7ff;
        }
        
        /* Consequences Grid */
        #gst-notice-page .consequences-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        #gst-notice-page .consequence-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            border-top: 4px solid #f44336;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        #gst-notice-page .consequence-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        #gst-notice-page .card-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }
        
        /* Benefits Grid */
        #gst-notice-page .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        
        #gst-notice-page .benefit-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            border: 2px solid transparent;
            background-clip: padding-box;
            position: relative;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        #gst-notice-page .benefit-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, #4caf50, #2196f3);
            border-radius: 17px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        #gst-notice-page .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        #gst-notice-page .benefit-card:hover::before {
            opacity: 1;
        }
        
        #gst-notice-page .benefit-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }
        
        #gst-notice-page .benefit-card h3 {
            color: #1a237e;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        /* Process Flow */
        #gst-notice-page .process-flow {
            max-width: 1000px;
            margin: 50px auto;
            position: relative;
        }
        
        #gst-notice-page .process-step {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            border-left: 5px solid #2196f3;
            position: relative;
        }
        
        #gst-notice-page .step-number {
            background: linear-gradient(135deg, #2196f3, #0d47a1);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            margin-right: 25px;
            flex-shrink: 0;
        }
        
        #gst-notice-page .step-content {
            flex: 1;
        }
        
        #gst-notice-page .step-content h3 {
            color: #2196f3;
            margin-bottom: 10px;
        }
        
        #gst-notice-page .step-arrow {
            font-size: 2rem;
            color: #4caf50;
            margin-left: 25px;
            opacity: 0.7;
        }
        
        /* Testimonials */
        #gst-notice-page .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        
        #gst-notice-page .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border-top: 5px solid #ff9800;
            position: relative;
            transition: all 0.3s ease;
        }
        
        #gst-notice-page .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        #gst-notice-page .testimonial-rating {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f5f5f5;
        }
        
        #gst-notice-page .stars {
            color: #ffb300;
            font-size: 1.3rem;
        }
        
        #gst-notice-page .rating-text {
            background: #4caf50;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        #gst-notice-page .testimonial-review {
            font-style: italic;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
            padding-left: 10px;
            border-left: 3px solid #e0e0e0;
        }
        
        #gst-notice-page .testimonial-outcome {
            background: #e8f5e9;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid #4caf50;
        }
        
        #gst-notice-page .testimonial-author {
            display: flex;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
        }
        
        #gst-notice-page .author-info {
            margin-left: 15px;
        }
        
        #gst-notice-page .author-info strong {
            display: block;
            color: #1a237e;
            font-size: 1.1rem;
        }
        
        #gst-notice-page .author-info span {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* FAQ Grid */
        #gst-notice-page .faq-grid {
            max-width: 900px;
            margin: 50px auto;
        }
        
        #gst-notice-page .faq-card {
            background: white;
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            border: 1px solid #e0e0e0;
        }
        
        #gst-notice-page .faq-question {
            padding: 20px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            background: #f8f9fa;
            transition: all 0.3s ease;
        }
        
        #gst-notice-page .faq-question:hover {
            background: #e3f2fd;
        }
        
        #gst-notice-page .faq-question h3 {
            margin: 0;
            font-size: 1.1rem;
            color: #1a237e;
        }
        
        #gst-notice-page .faq-toggle {
            font-size: 1.5rem;
            color: #ff5722;
            transition: transform 0.3s ease;
        }
        
        #gst-notice-page .faq-card.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        #gst-notice-page .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        #gst-notice-page .faq-card.active .faq-answer {
            padding: 20px 25px;
            max-height: 500px;
        }
        
        /* Final CTA */
        #gst-notice-page .final-cta {
            background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        #gst-notice-page .final-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: cover;
        }
        
        #gst-notice-page .final-cta h2 {
            color: white;
            position: relative;
        }
        
        #gst-notice-page .final-cta h2::after {
            background: linear-gradient(90deg, #ff5722, #ff9800);
        }
        
        #gst-notice-page .final-cta .cta-subtitle {
            color: rgba(255,255,255,0.9);
            font-size: 1.2rem;
        }
        
        #gst-notice-page .cta-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
            position: relative;
        }
        
        #gst-notice-page .cta-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }
        
        #gst-notice-page .cta-card:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        
        #gst-notice-page .cta-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
            display: block;
        }
        
        #gst-notice-page .cta-card h3 {
            color: white;
            margin-bottom: 15px;
        }
        
        #gst-notice-page .cta-card p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 25px;
        }
        
        #gst-notice-page .cta-btn {
            display: inline-block;
            padding: 12px 30px;
            background: white;
            color: #1a237e;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        #gst-notice-page .cta-btn:hover {
            background: #ff5722;
            color: white;
            transform: scale(1.05);
        }
        
        #gst-notice-page .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.2);
            position: relative;
        }
        
        #gst-notice-page .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        #gst-notice-page .contact-icon {
            font-size: 1.5rem;
            color: #ff9800;
        }
        
        #gst-notice-page .contact-detail div strong {
            display: block;
            color: white;
            margin-bottom: 5px;
        }
        
        #gst-notice-page .contact-detail div p {
            color: rgba(255,255,255,0.8);
            margin: 0;
            font-size: 0.95rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            #gst-notice-page .gst-section {
                padding: 60px 0;
            }
            
            #gst-notice-page h2 {
                font-size: 2rem;
            }
            
            #gst-notice-page .content-card,
            #gst-notice-page .table-card {
                padding: 25px 20px;
            }
            
            #gst-notice-page .reasons-grid,
            #gst-notice-page .consequences-grid,
            #gst-notice-page .benefits-grid,
            #gst-notice-page .testimonials-grid,
            #gst-notice-page .cta-cards {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            #gst-notice-page .process-step {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }
            
            #gst-notice-page .step-number {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            #gst-notice-page .step-arrow {
                display: none;
            }
            
            #gst-notice-page .contact-info {
                grid-template-columns: 1fr;
            }
            
            #gst-notice-page .gst-table {
                font-size: 0.85rem;
                min-width: 600px;
            }
            
            #gst-notice-page .section-container {
                padding: 0 15px;
            }
        }
        
        @media (max-width: 480px) {
            #gst-notice-page h2 {
                font-size: 1.7rem;
            }
            
            #gst-notice-page .final-cta {
                padding: 60px 0;
            }
            
            #gst-notice-page .cta-card {
                padding: 30px 20px;
            }
            
            #gst-notice-page .section-container {
                padding: 0 12px;
            }
            
            #gst-notice-page .content-card {
                padding: 20px 15px;
            }
        }