        /* Homepage Specific Styles */
        .hero {
            background: #fff;
            color: #000;
            padding: 80px 0;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.2rem;
            color: #6b6868;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .search-form {
            position: relative;
            max-width: 600px;
            margin: 0 auto 50px;
        }
        
        .search-input {
            width: 100%;
            padding: 18px 50px 18px 20px;
            border: 2px solid #333;
            border-radius: 8px;
            font-size: 1.1rem;
            background: #fff;
            color: #000;
            transition: all 0.3s ease;
        }
        
        .search-input:focus {
            outline: none;
            border-color: #000;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
        }
        
        .search-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            color: #999;
            pointer-events: none;
        }
        
        .company-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }
        
        .company-button {
            background: #111;
            color: #fff;
            border: 1px solid #333;
            padding: 5px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .company-button:hover {
            background: #222;
            border-color: #666;
            transform: translateY(-2px);
        }
        
        /* Section styling */
        .section {
            padding: 10px 0;
            border-radius: 10px;
        }
        
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 40px;
            color: #626262;
            text-align: center;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #626262;
            margin: 15px auto 0;
        }
        
        /* Pricing table styling */
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 40px;
            background: #fff;
        }
        
        .pricing-table thead {
            background: #000;
            color: #fff;
        }
        
        .pricing-table th {
            padding: 18px 15px;
            text-align: left;
            font-weight: 600;
            border-bottom: 2px solid #000;
            background: #000;
        }
        
        .pricing-table td {
            padding: 8px 15px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .pricing-table tr:hover {
            background: #f9f9f9;
        }
        
        .company-link {
            color: #000;
            text-decoration: none;
            font-weight: 600;
        }
        
        .company-link:hover {
            text-decoration: underline;
        }
        
        .follow-button {
            background: #000;
            color: #fff;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            transition: background 0.3s ease;
        }
        
        .follow-button:hover {
            background: #333;
        }
        
        .date-cell {
            color: #666;
        }
        
        /* RSS feed table */
        .news-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 30px;
        }
        
        .news-table td {
            padding: 15px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .news-link {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
        }
        
        .news-link:hover {
            text-decoration: underline;
        }
        
        .news-date {
            color: #fff;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .news-p{
            color: #c0c0c0; margin-top: 5px; font-size: 0.95rem;
        }
        
        .more-news-button {
            display: inline-block;
            background: #000;
            color: #fff;
            padding: 12px 30px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s ease;
        }
        
        .more-news-button:hover {
            background: #333;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 40px;
        }
        
        .pagination a, 
        .pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            text-decoration: none;
            color: #000;
            font-weight: 500;
        }
        
        .pagination a:hover {
            background: #f5f5f5;
        }
        
        .pagination .active {
            background: #000;
            color: #fff;
            border-color: #000;
        }
        
        .pagination-arrow {
            font-size: 1.2rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                padding: 50px 20px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .company-buttons {
                gap: 8px;
            }
            
            .company-button {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
            
            .section {
                padding: 40px 20px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .pricing-table th,
            .pricing-table td {
                padding: 12px 10px;
                font-size: 0.9rem;
            }
            
            .follow-button {
                padding: 6px 12px;
                font-size: 0.9rem;
            }
        }
        .pricing-table td{
            background: #fff;
        }

        @media screen and (max-width: 768px) {
              td {
                display: block;
                text-align: left;             
             }

              td::before {
                 content: none;
             }
           }
        
        @media (max-width: 480px) {
            .pricing-table {
                display: block;
                overflow-x: auto;
            }
            
            .company-buttons {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 10px;
                -webkit-overflow-scrolling: touch;
            }
            
            .company-button {
                white-space: nowrap;
            }
        }
/* model cards */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            padding: 20px;
        }
        
        .modal-content {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            max-width: 400px;
            width: 100%;
            position: relative;
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #666;
        }
        
        .modal-close:hover {
            color: #000;
        }
        
        .modal-content h3 {
            margin-top: 0;
            margin-bottom: 20px;
            color: #000;
        }
        
        .alert {
            padding: 15px;
            margin-top: 15px;
            border-radius: 4px;
        }
        
        .alert-success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .alert-error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }