        .table-card {
            padding: 15px;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .table thead {
            background-color: #0d6efd;
            color: white;
        }

        .table tbody tr:hover {
            background-color: #f1f7ff;
            transition: 0.3s ease;
        }

        .range-highlight {
            font-weight: 600;
            color: #198754;
        }
        .contact-details li {
            display: flex;
            align-items: center;   
            gap: 20px;             
            margin-bottom: 20px;
        }

        .contact-details .icon {
            height: 80px;
            width: 80px;
            background-color: #000000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 500ms ease;
            flex-shrink: 0;
        }

        .contact-details .text {
            flex: 1;
        }